Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Titre du document</title> <style> input::-moz-selection { color: #1c87c9; background-color: #eee; } input::selection { color: #1c87c9; background-color: #eee; } textarea::-moz-selection { color: white; background-color: #8ebf42; } textarea::selection { color: white; background-color: #8ebf42; } </style> </head> <body> <p>Élément input</p> <form><input type="text" value="Sélectionnez ce texte input" /></form> <p>Élément textarea</p> <textarea rows="5" cols="25">Sélectionnez ce texte textarea</textarea> </body> </html>