HTML and CSS Reference
In-Depth Information
The shorthand property can also be used with multiple backgrounds in the
following way:
background: url(bg1.png) no-repeat fixed right bottom,
url(bg2.png) repeat-y fixed top left;
Support for multiple backgrounds was added in CSS 3 and has been included in
browsers since Chrome 4+, Firefox 3.6+, IE9+, Safari 3.1+, and Opera 10.5+. A fallback
image can be provided for older browsers that do not support multiple backgrounds.
background-image: bg.png; /* fallback */
background-image: bg1.png, bg2.png;
 
Search WWH ::




Custom Search