Answers for "highlight text in html css"

1

css mark color

<style>
mark { 
  background-color: yellow;
  color: black;
}
</style>

<mark>Highlighted text!!</mark>
Posted by: Guest on March-23-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