The background-color property specifies the background color of an element.
The background color of the form fields can be specified by applying this property to the INPUT, TEXTAREA, and SELECT elements.
input, select, textarea {
background-color: #85b9e9;
}
Property |
Value |
Explanation |
background-color |
color code or name |
the color of the background |
In selectable list, the background color for the one list item can be specified by applying this property to the OPTION element.
Example