Background colours can be applied to most objects – note that “color” uses the American spelling.
Colours can be one of the 140 websafe colour names:
1 2 3 | p { background-color : darkblue; } |
Colours can be one of the 16million+ hexadecimal colours:
1 2 3 | p { background-color : #33CC22 ; } |