Answers for "how to remove button click border"

CSS
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 "how to remove button click border"

Browse Popular Code Answers by Language