Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way to add a box-shadow to the ::selection pseudo-element?

*::selection {
  box-shadow: 2px 2px black;
}

seems not to be working.

share|improve this question
Strange the CSS does seem to stop you from highlighting the link jsfiddle.net/kqteD – PhilipK Aug 2 '12 at 15:25
@PhilipK: That's what happens when you attempt to define a style rule for ::selection. The text is still being highlighted, but the browser no longer paints the default highlight style. – BoltClock Aug 2 '12 at 15:32
oh I see it defaults to background-color:none; – PhilipK Aug 2 '12 at 15:33

1 Answer

I don't believe you can add a box-shadow to

::selection { }

it does accept "background: #HEX" (not image) and "color: #HEX" (of course, rgb(a) for both too)

it DOES accept "text-shadow:" though

share|improve this answer
Yes, I had the same results... So there seems to be no other solution I guess. :( – Cedric Reichenbach Aug 2 '12 at 16:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.