Answers for "remove select border css"

CSS
1

remove border select css

select#xyz {
   border:0px;
   outline:0px;
}
Posted by: Guest on April-20-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

Browse Popular Code Answers by Language