Reputation: 11151
I have a web application that uses input fields. When a user puts the cursor in one of those fields, the field has a yellow or blue outline. IE works as intended. Is there a way to hide this focus style?
Thank you!
Upvotes: 2
Views: 2903
Reputation: 15887
#inputFieldId:focus, #inputFieldId:active {
outline: none !important;
}
Upvotes: 4