Answers for "how to remove the border when clicked on a form"

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
0

remove on click border

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

Code answers related to "how to remove the border when clicked on a form"

Browse Popular Code Answers by Language