user687554
user687554

Reputation: 11151

Hide Input Focus in Chrome / Safari

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

Answers (2)

Shaz
Shaz

Reputation: 15887

#inputFieldId:focus, #inputFieldId:active {
    outline: none !important;
}

Upvotes: 4

korona
korona

Reputation: 2230

Use this css style:

outline: 0

Upvotes: 2

Related Questions