Answers for "button has outline on click even after outline 0 and border none"

CSS
7

css get rid of button outline on click

button:hover, button:focus {
  outline: none;
}
Posted by: Guest on September-17-2020
2

how to remove border on button click

.btnName{
	outline: none;
}
Posted by: Guest on August-27-2020

Code answers related to "button has outline on click even after outline 0 and border none"

Browse Popular Code Answers by Language