css highlight text color code example
Example 1: hcss change highlight color
::selection {
background: #ffb7b7;
}
::-moz-selection {
background: #ffb7b7;
}
Example 2: custom selection color css
::selection {
color: #000000;
background-color: red;
}
::moz-selection {
color: #000000;
background-color: red;
}
Example 3: css text outline
#example {
font-size: 1em;
-webkit-text-stroke: 1px #000000;
}
#example {
font-size: 1em;
text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
Example 4: css text color border
h1 {
text-shadow: 1px 1px #ffffff;
}
Example 5: css text highlight
::selection {
background-color: #000;
color: #fff;
}
Example 6: css selected color
::selection {
background-color: #222;
color: white;
}