How to Set Text Selection Color with CSS
With this useful piece of CSS you can change color and background of the selected text.
Yes! Give it a try and select some text
/* Mozilla based browsers */
::-moz-selection {
background-color: #FFA;
color: #000;
}
/* Works in Safari */
::selection {
background-color: #FFA;
color: #000;
}
::-moz-selection {
background-color: #FFA;
color: #000;
}
/* Works in Safari */
::selection {
background-color: #FFA;
color: #000;
}
Related PostsIf you liked How to Set Text Selection Color with CSS; the posts below might interest you too:
|



