box remove blue border input focus css code example
Example 1: html remove border from textarea
textarea {
border: none;
background-color: transparent;
resize: none;
outline: none;
}
Example 2: delected blue border when an input is selected
//SCSS format
input{
&:focus {
outline: none !important;
}
}
textarea{
&:focus {
outline: none !important;
}
}