input background color css code example
Example 1: change background input css
input[type="text"], textarea {
background-color : #d1d1d1;
}
Example 2: color background to input boxes on focus
input:focus {
background-color: yellow;
}
Example 3: input backgound color
<input style="background-color: gold;" type="text" value="">