Answers for "how remove outline buttn ss"

CSS
0

remove outline on button click

using outline:none; we can remove that border in chrome

for tailwind css :
outline-none 
focus:outline-none
Posted by: Guest on September-13-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

Browse Popular Code Answers by Language