Reputation: 3775
When a input (type=text) element get focus, Chrome styles it with a light blue color. Is there a way to turn this feature off?
Upvotes: 1
Views: 298
Reputation: 1715
Using outline: none; should prevent that.
outline: none;
http://jsfiddle.net/hm49g9a8/
Upvotes: 4