how to remove the black border if you click an input html code example
Example 1: how to remove onclick input border
outline:none
Example 2: delected blue border when an input is selected
//SCSS format
input{
&:focus {
outline: none !important;
}
}
textarea{
&:focus {
outline: none !important;
}
}