Answers for "bootstrap 5 hide focus glow"

CSS
1

remove the glow in bootstrap input

.form-control:focus {
  box-shadow: none;
}
Posted by: Guest on July-14-2020
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 5 hide focus glow"

Browse Popular Code Answers by Language