Answers for "html remove input highlight when selected"

5

remove button highlight on click

.btn:focus {
  outline: none;
  box-shadow: none;
}
Posted by: Guest on May-04-2020
1

remove highlight input css

input.middle:focus {
    outline-width: 0;
}
Posted by: Guest on October-08-2021

Code answers related to "html remove input highlight when selected"

Browse Popular Code Answers by Language