Button Remove Border If Click

[Solved] Button Remove Border If Click | C - Code Explorer | yomemimo.com
Question : remove on click border

Answered by : gorgeous-gemsbok-xwzvuxor2qz4

outline:none;

Source : | Last Update : Fri, 04 Sep 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

Answers related to button remove border if click

Code Explorer Popular Question For C