When using Safari, whenever you click inside an input field, a highlight goes around the field (focus ring). Is there anyway to use CSS to remove the focus ring altogether?
Best Answerinput[type=text]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
outline: 0 none;
}
| Originally Posted by Kravvitz Try this: Code: input[type=text]:focus, |
