:selection css code example
Example 1: custom selection color css
::selection {
color: #000000;
background-color: red;
}
/* for firefox */
::moz-selection {
color: #000000;
background-color: red;
}
Example 2: css selection
::selection {
background-color: cyan;
}
Example 3: css selector color
::selection {
color: #ffffff;
background-color: red;
}