If you want to change your website's default text highlight color with any color of your choice, you can use the CSS3 declaration " ::selection" , which will replace your browser-level default text highlight color with a color that better suits your design.
See the example below with a RED for the background and WHITE for the text.
/* Firefox */
::-moz-selection {
background-color: #FF0000;
color: #fff;
}
/* Safari */
::selection {
background-color: #FF0000;
color: #ff;
}
Comments
Post has no comments.