I got this:
::selection {
background-color: #80b3ff;
color: #000000;
}
::-moz-selection {
background-color: #80b3ff;
color: #000000;
}
::-o-selection ....
But when I try to define all selectors together it doesn't work.
::selection, ::-moz-selection, ::-o-selection, ::-webkit-selection {
background-color: #80b3ff;
color: #000000;
}
What am I doing wrong?