hide input border code example
Example 1: html input box no border
border-width:0px;
border:none;
outline:none;
Example 2: hide input border on focus
input:focus{
border: none;
}
border-width:0px;
border:none;
outline:none;
input:focus{
border: none;
}