Answers for "remove blue highlight when button press css"

3

remove button highlight on click

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

css remove blue outline button

button {
  outline: none;
}
Posted by: Guest on March-18-2020

Code answers related to "remove blue highlight when button press css"

Browse Popular Code Answers by Language