| Inherited | Initial | Version |
|---|---|---|
| No | transparent |
CSS1 |
| IE8+ | FF1+ | SA1.3+ | OP9.2+ | CH2+ |
|---|---|---|---|---|
| Full | Full | Full | Full | Full |
Syntax
Description
This property sets the
background-color of an element; it's good practice to
specify a foreground color (color) at the same time, to
ensure that conflicts don’t arise with colors or backgrounds that are
defined elsewhere.
The background of an element is
the area covered by the width and
height of that element (whether those dimensions are
set explicitly, or the content dictates them); it also includes the area
covered by padding and borders. A background-color (or
background-image) that’s applied to an element will
appear beneath the foreground content of that element, and the area
covered by the padding and border
properties for the element. This coverage area is evident where an element
has transparent (or dotted or
dashed) borders, and the
background is seen beneath the borders (or between the
dots). Note that Internet Explorer versions up to and including 6 don’t
support transparent borders.
Some area of the
element in question must be visible if the
background-color is to show through. If the element has
no intrinsic height (defined either by its content or its dimensions), the
background will not be seen. If an element contains only floated children
which haven't been cleared—see clear—then again the
background won’t show, as the element's height will be zero.
The
background of an element isn't inherited by its
children as is commonly thought, it’ just that the
background will be visible through the child element's
background as the default value is
transparent.
Example
This style rule assigns a white
background (#fff) to the element with ID
"example" :
#example{
background-color: #fff;
}
Value
color takes any
valid CSS color value or color keyword.
The keyword
transparent sets the
background-color to be transparent. This value ensures
that the content of any element that’s beneath the current element will be
visible through the transparent background. The default for
background-color is transparent,
so there is no need to specify this value unless you’re overwriting
previous definitions.
Color values can be represented in several different ways in CSS (e.g RGBA color values), and the topic is covered in the CSS Concepts section.
Compatibility
| Internet Explorer | Firefox | Safari | Opera | Chrome | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 5.5 | 6.0 | 7.0 | 8.0 | 1.0 | 1.5 | 2.0 | 3.0 | 3.5 | 1.3 | 2.0 | 3.1 | 4.0 | 9.2 | 9.5 | 10.0 | 2.0 |
| Buggy | Buggy | Buggy | Full | Full | Full | Full | Full | Full | Full | Full | Full | Full | Full | Full | Full | Full |
Internet Explorer
for Windows versions up to and including 7 will only apply the
background from inside the border’s edge when the
element in question has a layout. If
the element does not have a layout, the
background-color or background-image
will slide under the borders as per the specifications.
Internet Explorer for Windows versions up to and
including 7 don’t support the value inherit.
User-contributed notes
Add a note
To post a note on this topic, please log in with your SitePoint username and password. If you don't have an account yet, you can create a new account for free.




