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.

When using Chrome or Safari, an active text box or text area will display a blue/orange border around the box. I have seen some sites get rid of this, but I have copied their CSS and it's still there. How do I do it?

share|improve this question
Further to this question, I wonder if it's possible to change the color of the outline instead of just removing it? I am in the same position, when the outline occurs, I get an ugly green color. Would be great to change it! – Kyle Sevenoaks Sep 23 '10 at 15:07

2 Answers

up vote 33 down vote accepted

The following CSS usually removes the default highlight-border:

input:focus {outline: none; }

It's worth remembering that the outline is a useful visual feedback for the UI focus, for those users not using a mouse (keyboard navigation, for example), and it's worth substituting another visual cue to replace the loss of the outline.

share|improve this answer
Thank you! Yeah, I definitely am...it's just I have a background on the inputs that makes it look ugly. – Chris Sep 23 '10 at 14:51
Mark as answer then. – Jeaffrey Gilbert Sep 23 '10 at 14:54
@Chris, always a pleasure. And it was a just-in-case reminder, no offence intended =) – David Thomas Sep 23 '10 at 14:54

You can use

input:focus, textarea:focus {
    outline: 0;
}

But try to give some indication to the user that the form element is focused, for accessibility reasons.

share|improve this answer
3  
Well, I'm gonna +1 you, since we came up with the same answer at the same time...(I'd feel rude otherwise) =) – David Thomas Sep 23 '10 at 15:02

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.