Highlight text in color

Solved
DanielBG Posted messages 18 Status Membre -  
Melooo Posted messages 1476 Status Membre -
Hello,
I would like to know how to choose the highlight color.
Let me explain: when you highlight a word with the mouse, the text appears white on a blue background. Is it possible to choose the background color (when the mouse highlights the word) in CSS? Sorry if I'm not very clear.
Thanks in advance.

P.S. Here’s a site that has text highlighting with a background color different from the usual: https://www.adobe.com/

Configuration: Windows Classic / Internet Explorer 1

1 réponse

Melooo Posted messages 1476 Status Membre 84
 
Hello,
When you hover over a word, you need to play with the hover:
 .montexte:hover { color:red; text-decoration:underline } 

This way, when you hover over your word, it gets highlighted and also changes color.
-1