Answers for "css how to highlight text"

1

css text highlight

/*Term: css text highlight*/

/*This uses the element ::selection, which is as far as i
know only supported by Google Chrome so far. This is not
a problem though, since other browsers will simply keep
the regular highliting styles.*/

/*Example*/
::selection {
  background-color: #000; /*Highlight Color*/
  color: #fff; /*Text Color*/
}
Posted by: Guest on October-12-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