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