Answers for "html mark text color"

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

mark tag in html

mark {
  display: inline-block;
  line-height: 0em;
  padding-bottom: 0.5em;
}
Posted by: Guest on April-28-2020

Browse Popular Code Answers by Language