Difference between revisions of "CSS GUIDE BACKGROUND IMAGE"

From CDOT Wiki
Jump to: navigation, search
(Syntax)
(Mozilla Recommended Values)
Line 29: Line 29:
  
 
== Mozilla Recommended Values ==
 
== Mozilla Recommended Values ==
 +
See Notes.
  
 
== Usage Examples ==
 
== Usage Examples ==

Revision as of 00:51, 22 November 2006

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

urlA URL path to an image file to be used as the background image.
noneSpecifies that no background image is to be used.

Mozilla Recommended Values

See Notes.

Usage Examples

body { background-image: url("images/mybackground.png"); }

p { background-image: none; }

Notes

Specification Conformance

CSS 1
CSS 2.1
CSS 3

Browser Compatibility

See Also