Multiple backgrounds with fallback

by dipish

HTML

<div class="multibackground"></div>

CSS

.multibackground {
    width: 300px;
    height: 200px;
    /* fallback for ie */
    background:url('http://www.css3.info/wp-content/themes/new_css3/img/old_paper.jpg') center top no-repeat fixed;
    /* multiple backgrounds string */
    background:url('http://www.css3.info/wp-content/themes/new_css3/img/ribbon.png') center top no-repeat fixed,
        url('http://www.css3.info/wp-content/themes/new_css3/img/old_paper.jpg') left top repeat fixed;
    background-color:#fcf09a;
}