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

I am wondering if its possible to remove the default blue and yellow glow when I click on a text input / text area using CSS?

Thank you for your time.

share|improve this question
1  
I like the blue glow and find it annoying when people disable it. In my opinion, the only time you should disable it is if you're modifying the shape of the text field and the blue glow is going to appear in the wrong place. – Steve Harrison Jun 2 '09 at 7:33
4  
@Steve, another reason to disable it is if you want the glow-effect to work in all browsers by using :focus instead of the ill-supported outline style. – Langdon Mar 9 '10 at 16:30
3  
It's really annoying when people start a philosophical conversation on whether something is the "right thing to do" when the question is a technical one. – tim Mar 22 at 19:31

3 Answers

up vote 153 down vote accepted
textarea, input { outline: none; }

Although, it's been argued that keeping the glow/outline is actually beneficial for accessibility as it can help users see which Element is currently focused.

share|improve this answer
2  
Perfect, thankyou very much. Also wondering, can I remove the textarea resize option also (at the bottom right of textarea)? – Alec Smart Jun 1 '09 at 16:30
+1 for the caution; please try to avoid doing anything which breaks the user's expectation of how their platform performs; you may actually be harming their productivity and making your web site harder to use. – Rob Jun 1 '09 at 16:31
3  
Remove my chrome/safari textarea resize option at your own peril! I find it really useful, indispensible even on some sites. – JeeBee Jun 1 '09 at 16:42
1  
Am not removing the resize option, but thought it would be good to know just in case :) – Alec Smart Jun 1 '09 at 16:45
4  
for getting rid of the resize handle: resize: none; – Daniel Feb 15 '12 at 16:09
show 6 more comments

This effect can occur on non-input elements, too. I've found the following works as a more general solution

:focus {
  outline-color: transparent;
  outline-style: none;
}
share|improve this answer

On textarea resizing in webkit based browsers:

Setting max-height and max-width on the textarea will not remove the visual resize handle. Try:

resize: none;

(and yes I agree with "try to avoid doing anything which breaks the user's expectation", but sometimes it does make sense, i.e. in the context of a web application)

To customize the look and feel of webkit form elements from scratch:

-webkit-appearance: none;
share|improve this answer
1  
It's also possible to allow resizing in one direction only, which may fix its interaction with some layouts without disabling it completely: the possible values for resize are none, both, horizontal, vertical, and inherit. – Boann Jul 28 '12 at 6:34

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.