Answers for "css button click border remove"

CSS
3

diable focus button css

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

remove button default border css

button:focus { outline: none; }
Posted by: Guest on September-09-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
0

remove button outlines

<button class="btn shadow-none">Bootstrap (4.1) button without shadow</button>
Posted by: Guest on August-11-2020

Code answers related to "css button click border remove"

Browse Popular Code Answers by Language