Answers for "how to remove black outline on button css"

CSS
7

css remove blue outline button

button {
  outline: none;
}
Posted by: Guest on March-18-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 "how to remove black outline on button css"

Browse Popular Code Answers by Language