Answers for "css remove acrive outline of button"

CSS
0

disable button outline in css

button:focus {outline:0;}
Posted by: Guest on January-17-2021
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

Code answers related to "css remove acrive outline of button"

Browse Popular Code Answers by Language