How can I select a certain element in a list of elements? I have the following:
my text
Use CSS nth-child with the prefix class name
nth-child
div.myclass:nth-child(1) { color: #000; } div.myclass:nth-child(2) { color: #FFF; } div.myclass:nth-child(3) { color: #006; }