I would like to change the color of highlighted text on my page.
Currently, this is how I am approaching this:
::selection, ::-moz-selection {
background-color: #ffffff;
}
Unfortunately, I am running into problems where I am unable to change the background color of highlighted text if strings are separated by a linebreak, like so:
Hello
World
An example of this can be found on my current web application project: http://term.qt.io by doing CTRL+A (Select-All for most browsers) to highlight all the text. You will notice that it appears gray in some areas but blue in others. I would like all the highlighted text to be a gray background rather than blue in some areas.

divorpor whatever element you are using. AFAIK there is no way to change this behavior. – Zack T. Dec 28 '12 at 15:14