+ 1
CSS
can you give me the idea for applying separate color to paragraph one and second separately.
3 Respostas
+ 7
p:nth-of-type(1) {
color: red;
}
p:nth-of-type(2) {
color: green;
}
0
Thank you very much, sir.
0
Could you please give me idea about how to learn code.