css text highlight color code example
Example 1: hcss change highlight color
::selection {
background: #ffb7b7; /* WebKit/Blink Browsers */
}
::-moz-selection {
background: #ffb7b7; /* Gecko Browsers */
}
Example 2: custom selection color css
::selection {
color: #000000;
background-color: red;
}
/* for firefox */
::moz-selection {
color: #000000;
background-color: red;
}
Example 3: 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*/
}
Example 4: css selected color
::selection {
background-color: #222;
color: white;
}
Example 5: css mark color
<style>
mark {
background-color: yellow;
color: black;
}
</style>
<mark>Highlighted text!!</mark>
Example 6: how to highlight text in css
<body>
<p>The Math test is on <mark>Friday</mark>.</p>
</body>