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;
}
'FE > CSS' 카테고리의 다른 글
[ CSS ] 3단 그라디언트 (0) | 2021.04.29 |
---|---|
[ CSS ] Pesticide (0) | 2021.04.28 |
[ CSS ] 말줄임 (0) | 2021.04.04 |
[ CSS ] 웹 접근성 확인 (0) | 2021.03.29 |
[ CSS ] Safe Area (0) | 2021.03.24 |