Answers for "how to make a highlight in css"

5

html highlight text

For HTML5: (with 'mark' tag)

<p>Do not forget to buy <mark>milk</mark> today.</p> 

In CSS file: (To customize highlight)

mark {
  background-color: yellow;
  color: black;
}
Posted by: Guest on March-16-2020
0

css highlight element

.highlight {
    box-shadow: 0 0 0 100000px rgba(0, 0, 0, .8);
}
Posted by: Guest on July-19-2021
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

Code answers related to "how to make a highlight in css"

Browse Popular Code Answers by Language