Duplicate of: Layering images in CSS - possible to put 2 images in same element?


Is it possible to have two background images? For instance, I'd like to have one image repeat across the top (repeat-x), and another repeat across the entire page (repeat), where the one across the entire page is behind the one which repeats across the top.

I've found that I can achieve the desired effect for two background images by setting the background of html and body:

html {
    background: url(images/bg.png);
}

body {
    background: url(images/bgtop.png) repeat-x;
}

Is this "good" CSS? Is there a better method? And what if I wanted three or more background images?

link|improve this question

feedback

9 Answers

up vote 89 down vote accepted

CSS3 allows this sort of thing and it looks like this:

body {
    background-image: url(images/bg.png), url(images/bgtop.png);
    background-repeat: repeat, repeat-x;
}

The current versions of all the major browsers now support it, however if you need to support IE8 or below, then the best way you can work around it is to have extra divs:

<body>
    <div id="bgTopDiv">
        content here
    </div>
</body>

body{
    background-image: url(images/bg.png);
}
#bgTopDiv{
    background-image: url(images/bgTop.png);
    background-repeat: repeat-x;
}
link|improve this answer
15  
Multiple backgrounds are supported by the latest versions of Firefox, Chrome, Safari and Opera. It will be supported in IE9, too. en.wikipedia.org/wiki/…) – Šime Vidas Oct 30 '10 at 23:44
2  
And if you wish to have different repeat/position settings you can do this: css3.info/preview/multiple-backgrounds – Krisc Mar 5 '11 at 19:56
feedback

Current version of FF and IE and some other browsers support multiple background images in a single CSS2 declaration. Look here http://dense13.com/blog/2008/08/31/multiple-background-images-with-css2/ and here http://www.quirksmode.org/css/multiple_backgrounds.html and here http://nicolasgallagher.com/multiple-backgrounds-and-borders-with-css2/

For IE, you might consider adding a behavior. Look here: http://css3pie.com/

link|improve this answer
feedback

The easiest way I have found to use two different background images in one div is with this line of code:

body{
    background:url(http://yourwebsite.com/images/image1.png) repeat-x, url(http://yourwebsite.com/images/image2.png) repeat;}

Obviously, that does not have to be for only the body of the website, you can use that for any div you want.

Hope that helps! There is a post on my blog that talks about this a little more in depth if anyone needs further instructions or help - http://blog.thelibzter.com/css-tricks-use-two-background-images-for-one-div.

link|improve this answer
feedback

Yes, it is possible, and has been implemented by popular usability testing website Silverback. If you look through the source code you can see that the background is made up of several images, placed on top of each other.

Here is the article demonstrating how to do the effect can be found on Vitamin. A similar concept for wrapping these 'onion skin' layers can be found on A List Apart.

link|improve this answer
feedback

Actualy there is an article, wich tell you how to do it with a IE Filter in the css file

http://cookbooks.adobe.com/post_Cross_Browser_Multi_background_images__including_I-16839.html

I hope it's useful

link|improve this answer
feedback

You could have a div for the top with one background and another for the main page, and seperate the page content between them or put the content in a floating div on another z-level. The way you are doing it may work but I doubt it will work across every browser you encounter.

link|improve this answer
feedback

What are you guys talking about? You can actually have two background images without having to have another div. Just use background-image: url(), url(); background-repeat: background-position:

link|improve this answer
3  
This is only available in CSS3... which when asked (2 years ago) wasn't a reliable option across browsers and certainly not an option in IE. – scunliffe Mar 4 '11 at 12:59
feedback
<style>

#bottombg{
background-image:url(bottom_bg.jpg);
float: left;
width: 100%;
min-height:583px;
background-position: center bottom;
background-repeat: no-repeat;
}

#bottombg{
    background-position: center bottom;
    background-repeat: repeat-x;
}

#topbg{
    background-image:url(top_bg.jpg);
    background-color: white;
    background-position: 0 0;
    background-repeat: repeat-x;
    padding: 0;
    margin: 0;
    float: left;
    width: 100%;
    min-width: 1003px;
    overflow: hidden;
}

#topbg{
    background-color: white;
    background-position: center top;
    background-repeat: repeat-x;
}


#site_wrapper{
    width:1003px;
    margin:0 auto;
    background-color:#C60;
    z-index:10;
    display:block;
    position:relative;
}

</style>

<div id="topbg">
<div id="bottombg">
<div id="site_wrapper">
content goes here
</div>
</div>
</div>
link|improve this answer
feedback

If you want multiple background images but don't want them to overlap, you can use this CSS:

body {
  font-size: 13px;
  font-family:Century Gothic, Helvetica, sans-serif;
  color: #333;
  text-align: center;
  margin:0px;
  padding: 25px;
}

#topshadow {
  height: 62px
  width:1030px;
  margin: -62px
  background-image: url(images/top-shadow.png);
}

#pageborders {
width:1030px;
min-height:100%;
margin:auto;        
    background:url(images/mid-shadow.png);
}

#bottomshadow {
    margin:0px;
height:66px;
width:1030px;
background:url(images/bottom-shadow.png);
}

#page {
  text-align: left;
  margin:62px, 0px, 20px;
  background-color: white;
  margin:auto;
  padding:0px;
  width:1000px;
}

with this HTML structure:

<body 

<?php body_class(); ?>>

  <div id="topshadow">
  </div>

  <div id="pageborders">

    <div id="page">
    </div>
  </div>
</body>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.