color of input css code example
Example 1: css color of input
input{
background-color: white; /*The color of your choice here*/
}
Example 2: input background color
<input style="background-color: gold;" type="text" value="">
input{
background-color: white; /*The color of your choice here*/
}
<input style="background-color: gold;" type="text" value="">