Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Заголовок документа</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>Элемент input</p> <form><input type="text" value="Выделите этот input текст" /></form> <p>Элемент textarea</p> <textarea rows="5" cols="25">Выделите этот textarea текст</textarea> </body> </html>