Difference between revisions of "CSS GUIDE BACKGROUND IMAGE"
(→Notes) |
|||
Line 38: | Line 38: | ||
== Notes == | == Notes == | ||
− | See [ | + | See [[Mozilla Recommended Values]] |
== Specification Conformance == | == Specification Conformance == |
Revision as of 13:05, 22 November 2006
Contents
Summary
The background image property is used to set the background image for a given element.
Applicability: | The background image property can be used for all CSS elements. | |
Media Group: | Visual | |
Inherited: | No |
Syntax
TARGET_ELEMENT {background-image: url | none ;}
Legal Values
url | A URL path to an image file to be used as the background image. |
none | Specifies that no background image is to be used. |
Mozilla Recommended Values
It is strongly recommended that developers should specify a background-color to be used if a given image is not available. This is similar to placing alternate text for images.t available. Background images are rendered in the foreground (i.e on top of the background color). This should be considered when using images with transparent background.
Usage Examples
body { background-image: url("images/mybackground.png"); } p { background-image: none; }
Notes
See Mozilla Recommended Values