Answers for "how to change text highlight color hieight in css"

CSS
4

hcss change highlight color

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

how to highlight text in css

<body>
<p>The Math test is on <mark>Friday</mark>.</p>
</body>
Posted by: Guest on May-24-2020

Code answers related to "how to change text highlight color hieight in css"

Browse Popular Code Answers by Language