Answers for "how to make a buttons outline dissappear"

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 "how to make a buttons outline dissappear"

Browse Popular Code Answers by Language