background-color :
color |
transparent
Compatibility: IE4+ N4+
Version: Level 1
Inherited: No
The background-color property allows you to select the background
color. Since, you can assign the background-color to individual
elements, you can have more than one background color on a page.
color
The color value can be the keyword color name, the hex
six-digit number (#FFFFFF), or the rgb three-digit value (255,255,255).
There are sixteen standard colors in html:
aqua |
navy |
black |
olive |
blue |
purple |
fuchsia |
red |
gray |
silver |
green |
teal |
lime |
white |
maroon |
yellow |
transparent
The transparent value allows the background color to be visible
through the foreground images. This is how an area inside any character,
such as the white space inside this O, is the same as this white background.
Code:
p {background-color: silver}
br {background-color: rgb(223,71,177) }
body {background-color: #98AB6F}
pre {background-color: transparent}
or
<span style="background-color: yellow;">A yellow background</span>
output:
A yellow background
Copyright 1999-2001 by Infinite Software Solutions, Inc. All rights reserved.
Trademark Information
|