Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Titre du document</title> <style> p.green::selection { background: #8ebf42; } p.green::-moz-selection { background: #8ebf42; } p.blue::selection { background: #1c87c9; } p.blue::-moz-selection { background: #1c87c9; } p.yellow::selection { background: #ffcc00; } p.yellow::-moz-selection { background: #ffcc00; } p.red::selection { background: #ff6666; } p.red::-moz-selection { background: #ff6666; } </style> </head> <body> <p class="green">Sélectionnez ce texte pour voir la couleur verte de surligne.</p> <p class="blue">Sélectionnez ce texte pour voir la couleur bleu de surligne.</p> <p class="yellow">Sélectionnez ce texte pour voir la couleur jaune de surligne.</p> <p class="red">Sélectionnez ce texte pour voir la couleur rouge de surligne.</p> </body> </html>