Answers for "remove button outline and border"

CSS
3

how to get rid of button outline when clicked

*:focus {
    outline: 0 !important;
}
Posted by: Guest on June-12-2020
1

removing the unwanted border button css

button,
button:active,
button:focus {
  outline: none;
}
Posted by: Guest on November-19-2020

Code answers related to "remove button outline and border"

Browse Popular Code Answers by Language