Answers for "how to remove the black border if you click an input html"

1

how to remove onclick input border

outline:none
Posted by: Guest on August-23-2020
0

delected blue border when an input is selected

//SCSS format

input{
  &:focus { 
    outline: none !important;
    }
}
textarea{
  &:focus { 
    outline: none !important;
    }
}
Posted by: Guest on October-30-2020

Code answers related to "how to remove the black border if you click an input html"

Browse Popular Code Answers by Language