Color of selected text

when I use any site, I see that the highlighted background color of the text is displayed in blue or matches our OS theme. Can I change the selected background color of the text?

+3
source share
2 answers

You can use this style. this will work on all major browsers except IE

<style>
             ::-moz-selection
            {
             background:#0C0;
             color:#f00;
             }
            ::selection
            {
            background:#6374AB;
            color:#F00;
           }
    </style>
+5
source

In Firefox, you can apply CSS styles to ::-moz-selection.
In Safari, you can apply CSS styles to ::selection.

See here .

+1
source

Source: https://habr.com/ru/post/1748858/


All Articles