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;
}
Personal website of Keith Hopkin
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;
}