Answers for "btn remove border outline"

C
6

remove button default border css

button:focus { outline: none; }
Posted by: Guest on September-09-2020
0

remove outline btn

button {
  outline: none;
}
.btn:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:focus {
  outline: none !important;
}

.btn:focus {
  box-shadow: none;
}
Posted by: Guest on September-01-2021

Code answers related to "C"

Browse Popular Code Answers by Language