Answers for "how to get rid of the outline of a button css"

CSS
7

how to get rid of button outline when clicked

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

css remove blue outline button

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

Code answers related to "how to get rid of the outline of a button css"

Browse Popular Code Answers by Language