I'm using this code:
::-moz-selection { background: #c92127; color: #fff; text-shadow: none; }
::selection { background: #c92127; color: #fff; text-shadow: none; }
Now I want to use this on any element inside a certain div.
My code for my wrapper is
<div id="wrapper" class="Red">
So I went with this for my CSS selector
div#wrapper.Red::-moz-selection { background: #c92127; color: #fff; text-shadow: none; }
div#wrapper.Red::selection { background: #c92127; color: #fff; text-shadow: none; }
But this does not work. It does work when I just use the selection code at the top of this question though.
So my question is: Does ::selection apply to all child elements (i.e. my selector is wrong) or is this not possible?
Here is an example in response to BoltClock's jsFiddle
::-moz-selectionversion in case you're testing this in Firefox? Are you using the same styles as in the first block of code? – BoltClock♦ Mar 15 '12 at 15:47::selectionstyles as in your first block of code, the more specific one should still work. Can you put up a test case or show us more code? – BoltClock♦ Mar 15 '12 at 15:49