Changing the Color of Selection with CSS
Scenario
When the text is selected we want the text color to be red
and the background to be yellow
.
Approach
::selection {
color: red;
background: yellow;
}
When the text is selected we want the text color to be red
and the background to be yellow
.
::selection {
color: red;
background: yellow;
}
Founder of Firefly Semantics Corporation