Reputation: 216
It's work only in Chrome:
:focus {
outline: 0;
}
Upvotes: 1
Views: 3850
Reputation: 608
input:required {
box-shadow: none;
}
input:invalid {
box-shadow: none;
}
<input type='email' placeholder='email' required />
Upvotes: 0
Reputation:
Try one of these:
*:focus {
outline: none;
}
or
input:focus{
outline: none;
}
Upvotes: 3