css background color of form code example
Example 1: add border to input css
border: none;
border-bottom: 1px solid blue;
Example 2: html input background color
input[type="text"], textarea {
background-color : #d1d1d1;
}
Example 3: input backgound color
<input style="background-color: gold;" type="text" value="">