Answer: css not:first-child selector #computers #fix #programming
Answer: css not:first-child selector #computers #fix #programming
css not:first-child selector
I have div tag and him is several ul tags.
If I trying set css properties only for first ul tag, this code works:
div ul:first-child { background-color: #900; }
But when i want set css properties each ul tags, except first, I trying this:
div ul:not:first-child { background-color: #900; }
also this
div ul:not(:first-child) { background-color: #900; }
and this
div…
View On WordPress










