HTML CSS examples for CSS Selector:nth-child
select nth child with css
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> div:nth-child(2) { color:Chartreuse; } </style> <!--from w w w . j a va2 s .c om--> </head> <body> <div id="topdiv"> <div class="middlediv"> <div> Lor </div> <div> Lor </div> <div> Lor </div> </div> </div> </body> </html>