css input border code example
Example 1: html input box no border
border-width:0px;
border:none;
outline:none;
Example 2: add border to input css
border: none;
border-bottom: 1px solid blue;
Example 3: input background color
<input style="background-color: gold;" type="text" value="">