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.

Can anyone explain how to remove the orange border (outline) around text/input boxes? I think it only happens on Chrome to show that the input box is active. Here's the input CSS i'm using:

input {
background-color:transparent;
border: 0px solid;
height:20px;
width:160px;
color:#CCC;
}
share|improve this question
note that oulines also appear in different cases: in IE9 you can see little dots around a button if you select it using tab (ie. you click inside a field before the button & go to the next fields using Tab until you reach the button [going to previous field is Shift + Tab]) – Adrien Be Feb 11 at 10:32

7 Answers

up vote 235 down vote accepted

This border is used to show that the element is focused (i.e. you can type in the input or press the button with Enter). You can remove it, though:

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

You may want to add some other way for users to know what element has keyboard focus though for usability.

Chrome will also apply highlighting to other elements such as DIV's used as modals. To prevent the highlight on those and all other elements as well, you can do:

*:focus {
    outline: none;
}
share|improve this answer
Thank you, this is very useful. – smftre May 2 at 7:15
input:focus{
outline:none;
}

This will do. Orange outline won't show up anymore.

share|improve this answer

I've found the solution.
I used: outline:none; in the CSS and it seems to have worked. Thanks for the help anyway. :)

share|improve this answer
That's the focus outline you are removing. It's there for a reason: Usability. Especially keyboard users will hate it if you remove it. – RoToRa Aug 3 '10 at 14:00
6  
@RoToRa what if he crafts a better one using shadows CSS 3 ? – Darkyen Feb 17 '12 at 15:09

this remove orange frame in chrome from all and any element no matter what and where is it

*:focus {
    outline: none;
}
share|improve this answer

You could use border: none; instead.

share|improve this answer
7  
Ignore that sorry. – dannybolabo Aug 3 '10 at 13:53
This does not provide an answer to the question. To critique or request clarification from an author, leave a comment below their post. – Stefan P. Dec 4 '12 at 16:36

This will definitely work. Orange outline will not show anymore.. Common for all tags:

*:focus {
    outline: none;
   }

Specific to some tag, ex: input tag

input:focus{
   outline:none;
  }
share|improve this answer
Please use the following syntax to remove the border of text box and remove the highlighted border of browser style.

input {
background-color:transparent;
border: 0px solid;
height:30px;
width:260px;
}
input:focus
{
outline:none;
}
share|improve this answer

protected by Community Feb 15 '12 at 13:08

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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