Answers for "bootstrap remove border on click"

3

remove button highlight on click

.btn:focus {
  outline: none;
  box-shadow: none;
}
Posted by: Guest on May-04-2020
0

bootstrap input remove border on focus

textarea:hover, 
input:hover, 
textarea:active, 
input:active, 
textarea:focus, 
input:focus,
button:focus,
button:active,
button:hover,
label:focus,
.btn:active,
.btn.active
{
    outline:0px !important;
    -webkit-appearance:none;
    box-shadow: none !important;
}
Posted by: Guest on June-26-2021
0

disable border toggle bootstrap

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
}
Posted by: Guest on May-10-2020

Code answers related to "bootstrap remove border on click"

Browse Popular Code Answers by Language