color background to input boxes on focus code example
Example 1: color background to input boxes on focus
input:focus {
background-color: yellow;
}
Example 2: input background color
<input style="background-color: gold;" type="text" value="">
Example 3: color background to input boxes on focus
input:focus {
background-color: yellow;
}