css remove button outline on click code example
Example 1: css get rid of button outline on click
button:hover, button:focus {
outline: none;
}
Example 2: how to get rid of button outline when clicked
*:focus {
outline: 0 !important;
}
Example 3: css remove button outline
button:focus {outline:0;}
Example 4: how to remove outline on button
outline: none;
Example 5: remove box around button when clicked
* {
outline: none;
}
Example 6: 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>