Answers for "bootstrap button remove focus"

3

remove button highlight on click

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

remove bootstrap button outline

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

bootstrap remove input focus outline

<div class="form-label-group">
  <input type="password" id="inputPassword" class="form-control shadow-none" placeholder="Password" required>
  <label for="inputPassword">Password</label>
</div>
Posted by: Guest on August-31-2021

Code answers related to "bootstrap button remove focus"

Browse Popular Code Answers by Language