Answers for "remove blue border from input"

CSS
17

css remove border input focus

textarea:focus, input:focus{
    outline: none;
}
Posted by: Guest on June-30-2020
7

remove blue border on a input

input:focus {
    outline: none !important;
}
Posted by: Guest on April-16-2020
5

css remove outline

element{outline:none;}
Posted by: Guest on December-29-2019
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 "remove blue border from input"

Browse Popular Code Answers by Language