Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've been looking for this throughout the web and can't even find anyone else even asking this, let alone a solution...

Is there a way to change the color of the highlight area within a a text input when text is selected? Not the highlight border or the background, but the portion that appears around the text when you have the text actually selected.

share|improve this question
I would recommend, that if you use text-shadow, you should be really careful with this, as described here, jqui.net/tips-tricks/highlight-text-and-common-design-failure and also here welcomebrand.co.uk/thoughts/… :) – Val Oct 12 '12 at 8:38

4 Answers

If you are looking for this:

alt text

Here is the link:

http://css-tricks.com/overriding-the-default-text-selection-color-with-css/

share|improve this answer
That's not exactly what I'm looking for, though it's definitely a nice thing to know. I need to do that but inside of a text input box. I tried applying the code from the examples to an input and that didn't work. – Eric Feb 13 '10 at 19:09
@Eric: I am afraid it can't be done inside the textbox as i have never come across such thing, may be some else has. – Sarfraz Feb 14 '10 at 4:21
up vote 1 down vote accepted

Thanks for the links, but it does seem as if the actual text highlighting just isn't exposed.

As far as the actual issue at hand, I ended up opting for a different approach by eliminating the need for a text input altogether and using innerHTML with some javascript. Not only does it get around the text highlighting, it actually looks much cleaner.

This granular of a tweak to an HTML form control is just another good argument for eliminating form controls altogether. Haha!

Thanks again!

E

share|improve this answer
2  
you could use HTML5 content editable tag on an element to create the same effect with the ::selection CSS, although this won't work with older browsers – Alex Mar 7 '12 at 11:06
@Alex Content editable is surprisingly effective for older browsers, it has worked since IE 5.5. – Miles O'Keefe Nov 14 '12 at 5:52

I realise this is an old question but for anyone who does come across it this can be done using contenteditable as shown in this JSFiddle.

Kudos to Alex who mentioned this in the comments (I didn't see that until now!)

share|improve this answer

I guess this can help :

selection styles

It's possible to define color and background for text the user selects.

Try it below. If you select something and it looks like this, your browser supports selection styles.

This is the paragraph with normal ::selection.

This is the paragraph with ::-moz-selection.

This is the paragraph with ::-webkit-selection.

Testsheet:

p.normal::selection {
  background:#cc0000;
  color:#fff;
}

p.moz::-moz-selection {
  background:#cc0000;
  color:#fff;
}

p.webkit::-webkit-selection {
  background:#cc0000;
  color:#fff;
}

Quoted from Quirksmode

share|improve this answer
But does this work inside a text input field (as opposed to a p tag), as the OP asked? – Mike Eng May 9 '12 at 14:40

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.