Answers for "css remove input selected border"

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
1

how to remove form border after click input

.from_Input{
    border: none;
    outline:none;
}
.from_Input:active{
    border: none;
    outline:none;
}
Posted by: Guest on May-07-2021
0

remove outline of input css

.sidebar_searchcontainer > input {
    border:none;
    outline-width: 0;
}
Posted by: Guest on April-25-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 "css remove input selected border"

Browse Popular Code Answers by Language