Answers for "how to remove blue oultine in bootstrap button"

CSS
1

remove bootstrap button outline

.btn{
	box-shadow: none !important
}
Posted by: Guest on September-22-2021
0

bootstrap blue outline button

.btn:focus,.btn:active {
   outline: none !important;
   box-shadow: none;
}
Posted by: Guest on February-02-2022

Code answers related to "how to remove blue oultine in bootstrap button"

Browse Popular Code Answers by Language