Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
<input type="text" name="user" class="middle" id="user" tabindex="1" />

Basic text input in html, when you tab or focus into it, Safari will put a blurry blue border around it. For the layout I am working on, this is distracting and does not look right.

FireFox does not seem to do this, or at least, will let me control it with border: x;

If someone can tell me how IE performs, I would be curious, but getting Safari to remove this little bit of flare would be nice.

Thanks

share|improve this question

4 Answers

up vote 275 down vote accepted

In your case, try:

input.middle:focus {
    outline-width: 0;
}

EDIT: This post has become popular, so let me elaborate a bit:

Or in general, to affect all form elements:

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}
share|improve this answer
7  
Thanks Cory, great tip. You also need to assign the CSS to textarea to cover all input fields. input:focus, textarea:focus {outline: none;} – Tama Oct 17 '11 at 2:35
7  
don't forget select as well select:focus {outline:none;} – Geek Num 88 Oct 26 '11 at 18:46
2  
There's also the <button> tag, which is used by jQuery UI and Twitter Bootstrap, amongst other things, so I'd add button: focus to the list for completeness. – Chris Parton Oct 16 '12 at 1:34

To remove it from all inputs

input {
 outline:none;
}
share|improve this answer

This is an old thread, but for reference it's important to note that disabling an input element's outline is not recommended as it hinders accessibility.

The outline property is there for a reason - providing users with a clear indication of keyboard focus. For further reading and additional sources about this subject see http://outlinenone.com/

share|improve this answer
Boaz, FYI input.middle{outline: none} will still allow you to traverse through the elements(including input.middle). Pressing the tab key will focus on the input tag as well. Only thing is that you won't be able to see the focus(outline focus) on it. So it's not that harmful to use it.. : ) – Anish Nair Jan 31 at 7:13
2  
@AnishNair Only thing is that you won't be able to see the focus(outline focus) on it - and that's exactly my point. Removing the outline disables the visual indication of the focus event, not the actual event. Removing the visual indication means you're making it harder for people with disabilities who rely on that indication. – Boaz Jan 31 at 9:48
Sometimes we need to compromise, in order to achieve something : ) – Anish Nair Jan 31 at 10:31
2  
@AnishNair True. But more than often people reading this thread would prefer the easy way out (i.e. outline:none;) without considering the implications. Just because something is easy and saves time, doesn't mean it's best practice :) – Boaz Jan 31 at 10:43

Use this code:

input:focus {
    outline: 0;
}
share|improve this answer

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.