Answers for "how to remove blue border on button click"

CSS
3

diable focus button css

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

how to remove border on button click

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

remove button outlines

<button class="btn shadow-none">Bootstrap (4.1) button without shadow</button>
Posted by: Guest on August-11-2020

Code answers related to "how to remove blue border on button click"

Browse Popular Code Answers by Language