Remove Clicked Button Border

[Solved] Remove Clicked Button Border | 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 : button remove border if click

Answered by : colorful-crocodile-5z5o51xcxl9k

<style>
input[type="button"]
{ width:120px; height:60px; margin-left:35px; display:block; background-color:gray; color:white; border: none; outline:none;
}
</style>

Source : https://stackoverflow.com/questions/19886843/how-to-remove-outline-border-from-input-button | Last Update : Tue, 24 Mar 20

Question : html button remove border on click

Answered by : dizzy-dunlin-r657cuxqo1na

.x-btn:focus, .button:focus, [type="submit"]:focus { outline: none;
}

Source : https://theme.co/apex/forums/topic/remove-border-on-buttons-on-click/ | Last Update : Fri, 27 Mar 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 remove clicked button border

Code Explorer Popular Question For C