How To Get Rid Of Button Outline When Clicked

[Solved] How To Get Rid Of Button Outline When Clicked | C - Code Explorer | yomemimo.com
Question : how to get rid of button outline when clicked

Answered by : delightful-dunlin-kcinlf9c8j34

*:focus { outline: 0 !important;
}

Source : https://stackoverflow.com/questions/19886843/how-to-remove-outline-border-from-input-button/19886880 | Last Update : Fri, 19 Jun 20

Question : remove on click border

Answered by : gorgeous-gemsbok-xwzvuxor2qz4

outline:none;

Source : | Last Update : Fri, 04 Sep 20

Question : remove clicked button border

Answered by : andrew-hyder

<button style="outline: none;"></button>

Source : | Last Update : Fri, 17 Jul 20

Question : remove outline on button click

Answered by : lokesh-ramchandani-in6l3jq294i2

using outline:none; we can remove that border in chrome
for tailwind css :
outline-none
focus:outline-none

Source : | Last Update : Sun, 20 Sep 20

Answers related to how to get rid of button outline when clicked

Code Explorer Popular Question For C