I've noticed a yellow outline appearing on many of my input boxes when I select them. How can I remove this?
Css lint is reminding me that:
*:focus {
outline: none;
}
should not be used due to
outlines should not be hidden unless other visual changes are made
When I attempted the following code:
input:focus,
select:focus,
textarea:focus,
button:focus {
outline: none;
}
I received a lint error message but it seems to have worked.