From the Blog

Dec
15

Remove Highlight from Safari Input Boxes on Focus

Posted by Keith on December 15th, 2008 at 12:26 pm

Even with a text field having a 0px border Safari still renders a glowing halo around text fields that are in focus. To remove this sometimes annoying feature use the following CSS:


input {
outline-style:none;
outline-width:0px;
}

Leave a Reply


  1.  

    |