0
I have the following CSS:
*::selection {background-color:red;color:blue;}
*::-moz-selection {background-color:red;color:blue;}
*::-webkit-selection {background-color:red;color:blue;}
Where, any part of the text, it leaves the background
in red and the text in blue.
Only that the background-color
is not working.
will see the browser thought that blue on top of red would look very ugly :P
– Maniero