css form input no border when typing code example
Example 1: html input box no border
border-width:0px;
border:none;
outline:none;
Example 2: remove default input style css
input:focus, textarea:focus, select:focus{
outline: none;
}
border-width:0px;
border:none;
outline:none;
input:focus, textarea:focus, select:focus{
outline: none;
}