Answers for "css mark text"

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 highlight text in css

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

Browse Popular Code Answers by Language