Answers for "how to change text highlighting on website html"

CSS
5

change highlight color html

::-moz-selection { /* Code for Firefox */
  color: red;
  background: yellow;
}

::selection {
  color: red;
  background: yellow;
}
Posted by: Guest on August-04-2020
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 text highlighting on website html"

Browse Popular Code Answers by Language