How To Remove Button Decoration

[Solved] How To Remove Button Decoration | C - Code Explorer | yomemimo.com
Question : how to remove button decoration

Answered by : rohit-singh

button { border: none;
}
button:focus { border: none; outline: none;
}
button:focus{ outline:none !important;
}
(add !important if it is used in Bootstrap)

Source : | Last Update : Wed, 06 May 20

Question : remove button default border css

Answered by : wandering-warbler-bgupzuul9zee

button:focus { outline: none; }

Source : https://stackoverflow.com/questions/11497094/remove-border-from-buttons | Last Update : Wed, 16 Sep 20

Answers related to how to remove button decoration

Code Explorer Popular Question For C