Comment obtenir un changement de couleur entrelacé en CSS3 ? Utilisez les sélecteurs CSS3 p:nth-of-type(impair) et p:nth-of-type(even) pair
Voici quelques exemples :
<!DOCTYPE html> <html> <head> <style> p:nth-of-type(odd) { background:#ff0000; } p:nth-of-type(even) { background:#0000ff; } </style> </head> <body> <h1>This is a heading</h1> <p>The first paragraph.</p> <p>The second paragraph.</p> <p>The third paragraph.</p> </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!