Pages

:nth-child


:nth-child ( pos )
Le style est appliqué à toutes les balises enfants en position pos.

pos = ( 2 )

<body> // second enfant de HTML
<div>
  <h2>1 enfant</h2> 
  <p>2 enfant</p> // second enfant de div
  <h2>3 enfant</h2>
  <h2>4 enfant</h2>
</div>
</body>


p:nth-child ( pos )
Le style est appliqué à toutes balises p enfants en position pos.

pos = ( 2 )

<div>
  <h2>1 enfant</h2> 
  <p>2 enfant</p> // second enfant de div
  <h2>3 enfant</h2>
  <h2>4 enfant</h2>
</div>
</body>


JS Bin on jsbin.com