Answers for "after c lick button remove border"

CSS
7

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 "after c lick button remove border"

Browse Popular Code Answers by Language