Answers for "remove border from button after click"

CSS
3

how to get rid of button outline when clicked

*:focus {
    outline: 0 !important;
}
Posted by: Guest on June-12-2020
2

how to remove border on button click

.btnName{
	outline: none;
}
Posted by: Guest on August-27-2020
0

remove on click border

outline:none;
Posted by: Guest on August-28-2020
1

button remove border if click

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

Code answers related to "remove border from button after click"

Browse Popular Code Answers by Language