Can anyone explain how to remove the orange border 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;
}
link|improve this question

feedback

4 Answers

up vote 90 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.

link|improve this answer
feedback
input:focus{
outline:none;
}

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

link|improve this answer
feedback

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

link|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
1  
@RoToRa what if he crafts a better one using shadows CSS 3 ? – Abhishek Feb 17 at 15:09
feedback

You could use border: none; instead.

link|improve this answer
3  
Ignore that sorry. – dannybolabo Aug 3 '10 at 13:53
feedback

protected by Community Feb 15 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.