how to remove default input field code example
Example 1: html remove border from textarea
textarea {
border: none;
background-color: transparent;
resize: none;
outline: none;
}
Example 2: remove default input style css
input:focus, textarea:focus, select:focus{
outline: none;
}