Answers for "how to stop input from highlighting onclick"

CSS
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
1

change border highlight color on an input text element

.input:focus {
    outline: none !important;
    border:1px solid red;
    box-shadow: 0 0 10px #719ECE;
}
Posted by: Guest on May-21-2020
0

how to stop input from highlighting onclick

//SCSS format

input{
  &:focus { 
    outline: none !important;
    }
}
textarea{
  &:focus { 
    outline: none !important;
    }
}
Posted by: Guest on August-25-2021

Code answers related to "how to stop input from highlighting onclick"

Browse Popular Code Answers by Language