Answers for "how to remove blue highlight from input"

CSS
1

remove highlight input css

input.middle:focus {
    outline-width: 0;
}
Posted by: Guest on October-08-2021
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 blue highlight from input"

Browse Popular Code Answers by Language