Answers for "how to change a selection color in css"

9

custom selection color css

::selection {
	color: #000000;
	background-color: red;
}

/* for firefox */
::moz-selection {
	color: #000000;
	background-color: red;
}
Posted by: Guest on March-28-2020
1

How to change selection color

::selection{
	background-color: red;
    color: white;
}
Posted by: Guest on February-20-2021

Code answers related to "how to change a selection color in css"

Browse Popular Code Answers by Language