highlight color html code example
Example 1: html how to change highlight color
::selection {
background: #ffb7b7; /* WebKit/Blink Browsers */
}
::-moz-selection {
background: #ffb7b7; /* Gecko Browsers */
}
Example 2: change highlight color html
::-moz-selection { /* Code for Firefox */
color: red;
background: yellow;
}
::selection {
color: red;
background: yellow;
}
Example 3: mark tag in html
mark {
display: inline-block;
line-height: 0em;
padding-bottom: 0.5em;
}
Example 4: how to highlight text in css
<body>
<p>The Math test is on <mark>Friday</mark>.</p>
</body>