Ive been modifying a form today, and testing it in Chrome. I noticed that on selecting a textbox, with border: 0 or none, it still puts a yellow border around it. Does anyone know of a way to get rid of this border? I usually wouldnt be that bothered but it looks really horrible with the colour scheme I am using.

Thanks in advance.

Regards,

Richard

PS I have tried using !important too, in case something else is setting the border to yellow in the CSS.

link|improve this question

68% accept rate
3  
Try outline: none; – Alec Oct 6 '10 at 17:21
for the sake of reference, some useful links about css' outline-property : w3.org/TR/CSS2/ui.html#dynamic-outlines , alexmansfield.com/css/css-outline – immeëmosol Jan 22 '11 at 20:43
Think immeemosol, bookmarked those for future reference! Very useful! – ClarkeyBoy Jan 27 '11 at 2:46
feedback

2 Answers

up vote 13 down vote accepted

You can set outline: none; to change this behavior. Note that it will potentially reduce accessibility in some circumstances, but I agree that Chrome's large highlight looks bad in many cases.

input[type="text"], input[type="password"] { outline: none; }
link|improve this answer
Thanks. I never even knew outline existed - somehow managed to skip that one for the last 6 years... For the purpose this application is for (an offline application for use by my Dads company), accessibility doesnt really matter. Thanks again. – ClarkeyBoy Oct 6 '10 at 17:27
I believe outline is a new property in CSS3 – Gabriele Cirulli Oct 23 '11 at 17:43
feedback

It's an outline, not a border; Use the outline CSS property.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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