Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Titre du document</title> <style> p:nth-child(3) { background: #ccc; } </style> </head> <body> <h2>Exemple du sélecteur :nth-child</h2> <div> <p>Paragraphe 1</p> <p>Paragraphe 2</p> <p>Paragraphe 3</p> <p>Paragraphe 4</p> <div> </body> </html>