input type without border code example
Example 1: html input box no border
border-width:0px;
border:none;
outline:none;
Example 2: remove blue border on a input
input:focus {
outline: none !important;
}
Example 3: add border to input css
border: none;
border-bottom: 1px solid blue;