Answers for "remove the outline clicking a button"

CSS
3

how to get rid of button outline when clicked

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

how to remove border on button click

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

Code answers related to "remove the outline clicking a button"

Browse Popular Code Answers by Language