FE/CSS
[ CSS ] Selection Color
HEON.D
2021. 4. 8. 10:00
www.w3schools.com/howto/howto_css_text_selection.asp
How To Change Text Selection Color with CSS
How TO - Change Text Selection Color Learn how to override the default text selection color with CSS. Text Selection Color Select the following text: Default text selection color Custom text selection color How To Change Text Selection Color Use the ::sele
www.w3schools.com
css-tricks.com/almanac/selectors/s/selection/
::selection | CSS-Tricks
Using your cursor select this sentence. Notice how as you select the text a background color fills the space? You can change the background color and
css-tricks.com
::-moz-selection { /* Code for Firefox */
color: red;
background: yellow;
}
::selection {
color: red;
background: yellow;
}