Answers for "how to remove unwanted borders in html when click"

CSS
1

how to remove form border after click input

.from_Input{
    border: none;
    outline:none;
}
.from_Input:active{
    border: none;
    outline:none;
}
Posted by: Guest on May-07-2021
2

how to remove border on button click

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

Code answers related to "how to remove unwanted borders in html when click"

Browse Popular Code Answers by Language