Answers for "remove form input outline bootstrap"

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
0

remove the outline from bootstrap input and input fields

input {
    border: 1;
    outline: none;
}
Posted by: Guest on November-27-2021

Code answers related to "remove form input outline bootstrap"

Browse Popular Code Answers by Language