select nth child with css - HTML CSS CSS Selector

HTML CSS examples for CSS Selector:nth-child

Description

select nth child with css

Demo Code

ResultView the demo in separate window

<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>

Related Tutorials