The background-color property specifies the background color of an element.
The background color of a page is defined in the body selector:
body {background-color:#b0c4de;}
- a HEX value - like "#ff0000"
- an RGB value - like "rgb(255,0,0)"
- a color name - like "red"
In the example below, the h1, p, and div elements have different background colors:
h1 {background-color:#6495ed;}
p {background-color:#e0ffff;}
div {background-color:#b0c4de;}
p {background-color:#e0ffff;}
div {background-color:#b0c4de;}
0 comments:
Post a Comment