Answers for "change the highlight color of text in html"

CSS
3

html how to change highlight color

::selection {
  background: #ffb7b7; /* WebKit/Blink Browsers */
}
::-moz-selection {
  background: #ffb7b7; /* Gecko Browsers */
}
Posted by: Guest on January-08-2021

Code answers related to "change the highlight color of text in html"

Browse Popular Code Answers by Language