0
How can i use color attribute in ordered list
How can i use color attribute in ordered list
1 Odpowiedź
+ 1
ol { color:red; } to target all the ordered list
li { color:red; } to target each line of a list
li:nth-child(x) { color:red; } to target the xth line of a list
Combine with specifics selectors ( #id or .class ) to target specific list ^^