I’m trying to use a custom ::selection effect in Chrome but getting this bad blue coloration on highlighted text:

Here’s my CSS:
::selection {
color:#ffffff;
background: #000000;
}
::-moz-selection {
color:#ffffff;
background: #000000;
}
::-webkit-selection {
color:#ffffff;
background: #000000;
}
I can’t replicate the error in Firefox – is there anything I can do, or is it just a feature of the browser?
You want to wrap the text in a
<p>tag.