0

It's work only in Chrome:

:focus {
  outline: 0;
}

screenshot

K3---rnc
  • 6,717
  • 3
  • 31
  • 46
user2240578
  • 87
  • 2
  • 6
  • 2
    Possible duplicate of [How to remove border (outline) around text/input boxes? (Chrome)](https://stackoverflow.com/questions/3397113/how-to-remove-border-outline-around-text-input-boxes-chrome) – Bharata Aug 02 '18 at 17:24

2 Answers2

2

Try one of these:

*:focus {
    outline: none;
}

or

input:focus{
outline: none;
}
Harley
  • 385
  • 1
  • 2
  • 11
0

input:required {
    box-shadow: none;
}

input:invalid {
    box-shadow: none;

}
<input type='email'  placeholder='email' required  /> 
MhkAsif
  • 537
  • 3
  • 18