Answers for "after click button border disable"

1

html button remove border on click

.x-btn:focus, .button:focus, [type="submit"]:focus {
   outline: none;
}
Posted by: Guest on March-20-2020
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

Code answers related to "after click button border disable"

Browse Popular Code Answers by Language