Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Titre du document</title> <style> :target { border: 2px solid #1c87c9; background-color: #eeeeee; } </style> </head> <body> <h2>Exemple du sélecteur :target</h2> <p> <a href="#example1">Sauter à Paragraphe 1</a> </p> <p> <a href="#example2">Sauter à Paragraphe 2</a> </p> <p id="example1"> <strong>Paragraphe 1</strong> </p> <p id="example2"> <strong>Paragraphe 2</strong> </p> </body> </html>