Answers for "if textbox has value remove border css"

4

html input box no border

border-width:0px;
border:none;
outline:none;
Posted by: Guest on August-25-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