Answers for "css change highlighting text"

1

Disable highlighting text in CSS.

.disable-highlighting {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
Posted by: Guest on November-02-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

Browse Popular Code Answers by Language