Remove Highlight from Safari Input Boxes on Focus

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

Your email address will not be published. Required fields are marked *