Utilisez la pseudo-classe :first-child pour ajouter des styles spéciaux aux éléments qui sont le premier enfant d'autres éléments.
Vous pouvez essayer d'exécuter le code suivant pour comprendre l'utilisation de :pseudo-classe premier enfant -
<html> <head> <style> div > p:first-child { text-indent: 25px; } </style> </head> <body> <div> <p>First paragraph in div. This paragraph will be indented</p> <p>Second paragraph in div. This paragraph will not be indented</p> </div> <p>But it will not match the paragraph in this HTML:</p> <div> <h3>Heading</h3> <p>The first paragraph inside the div. This paragraph will not be effected.</p> </div> </body> </html>
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!