Answers for "removing on click border from button"

1

html button remove border on click

.x-btn:focus, .button:focus, [type="submit"]:focus {
   outline: none;
}
Posted by: Guest on March-20-2020
1

remove box around button when clicked

* {
	outline: none;
}
Posted by: Guest on July-19-2020

Code answers related to "removing on click border from button"

Browse Popular Code Answers by Language