Difference between revisions of "CSS GUIDE BACKGROUND IMAGE"
(→Specification Conformance) |
(→Syntax) |
||
Line 16: | Line 16: | ||
== Syntax == | == Syntax == | ||
− | + | element{background-image: url | none ;} | |
+ | |||
== Legal Values == | == Legal Values == | ||
<table border="2"> | <table border="2"> |
Revision as of 23:49, 21 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
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
Usage Examples
body { background-image: url("images/mybackground.png"); } p { background-image: none; }