Is it possible to use CSS selectors without a list?
Clash Royale CLAN TAG #URR8PPP Is it possible to use CSS selectors without a list? I have the following classes: .at-icon.at-icon {} And I need to style each element (Social network icon), that uses those classes, like this: .at-icon.at-icon:nth-child(even) { fill: red !important } .at-icon.at-icon:nth-child(odd) { fill: blue !important } So one element would be red, and the other one would be blue. They all appear like this currently: Screenshot And my HTML using the class is: Copy Link The problem is: I don't have any <li> (List) in the DOM . Unfortunately, this is all I can post here to reproduce my issue, as I'm using a third party tool, this one addthis.com <li> DOM It's a free tool, you can use it for testing. I can't use it for testing as it would mean using my account resources and I might be going against their TOS. 1 Answer 1 I think what you are looking fo...