Answers for "how to change the color in web highlighter"

CSS
0

how to change highlight color on website

/* Change Selection Text Color When Highlighting */ 

::-moz-selection { background-color: #476f30; 
color: #fff; } 
::selection { background-color: #476f30; 
color: #fff; }
Posted by: Guest on May-21-2020

Code answers related to "how to change the color in web highlighter"

Browse Popular Code Answers by Language