user2240578
user2240578

Reputation: 216

How To Remove Orange Border Around Input

It's work only in Chrome:

:focus {
  outline: 0;
}

screenshot

Upvotes: 1

Views: 3850

Answers (2)

MhkAsif
MhkAsif

Reputation: 608

input:required {
    box-shadow: none;
}

input:invalid {
    box-shadow: none;

}
<input type='email'  placeholder='email' required  /> 

Upvotes: 0

user8098467
user8098467

Reputation:

Try one of these:

*:focus {
    outline: none;
}

or

input:focus{
outline: none;
}

Upvotes: 3

Related Questions