How to Use Multiple Background Images with CSS

See CSS: Tips and Tricks for similar articles.

CSS3 offers the ability to include multiple background images for a given element - use a comma-delimited list to specify as many as you like:

background-image:url(img1.gif), url(img2.png), url(img3.gif)
The order of the listed background images determines the position of the layer relative to the viewer, akin to the CSS z-index property: the first background image is on "top", the next below that, etc.

In similar fasion, specifying a comma-delimited list of background-position and/or background-repeat values assigns the position and repeat, respectively, for the multiple background images, as such:


div {
	background-image:url(img1.gif), url(img2.png), url(img3.gif);
	background-position:center top, right top, center bottom;
	background-repeat:no-repeat, repeat-x, repeat-y;
}

In the example above, background image img1.gif is positioned center top and not repeated, img2.png is positioned right top and repeated horizontally, and img3.gif is positioned center bottom and repeated vertically.

Excess position or repeat values are ignored; that is, for an element for which three background images are specified and for which, say, four background-position values are set, the fourth set of position values would be ignored. If too few position or repeat values (i.e., fewer than the number of background images) are set, then the position or repeat values are repeated.

Specifying background-color when applying multiple background images applies the color as the final (lowest) background layer, behind all of the background images.

The background shorthand property is still available with multiple background images:


div {
	background:url(img1.gif) center top no-repeat, url(img2.png)
	right top repeat-x, url(img3.gif) center bottom repeat-y;
}

Follow these steps to see a demonstration of multiple background images:

  1. Create or download three images to use as backgrounds. These can be anything, but they should be small so that you can see how background-position and background-repeat work.
  2. Make a simple HTML document containing just a single div element.
    
    <!DOCTYPE HTML>
    <html>
    <head>
        <title>Multiple Background Images</title>
    </head>
    <body>
    <div>
    
    </div>
    </body>
    </html>
    	
  3. Put a style element in the head and use the CSS from earlier in this How-To to display the multiple image backgrounds. Make sure to also give the div a width and a height.
    
    <style type="text/css">
    div {
    	width:750px;
    	height:750px;
    	background-image:url(img1.png), url(img2.png), url(img3.png);
    	background-position:center top, right top, center bottom;
    	background-repeat:no-repeat, repeat-x, repeat-y;
    }
    </style>
    
  4. Open the HTML page in a browser. The page should look like this: multiple backgrounds

Related Articles

  1. Learn the Very Basics of CSS in One Minute
  2. How to Create a CSS External Style Sheet
  3. How to Align Text with CSS
  4. How to Create a Horizontal Navigation Menu with CSS
  5. How to Create a Fixed-Width Layout with CSS
  6. How to Remove Spacing Between Table Borders with CSS
  7. How to Set a Background Image with CSS
  8. How to Set Text Spacing and Placement in CSS
  9. How to Style a Table with CSS
  10. How to Create Boxes with Rounded Corners in CSS
  11. How to Create a Vertical Navigation Menu with CSS
  12. How to Use the CSS Opacity Property
  13. How to Use Multiple Background Images with CSS (this article)
  14. Absolute Positioning with CSS
  15. How to Use the CSS Border Shorthand Property
  16. How to Create CSS Button Links
  17. How to Create a Fluid-Width Layout with CSS
  18. How to Set Text and Background Color with CSS
  19. How to Create a CSS Embedded Style Sheet
  20. How to Add Inline Styles to CSS
  21. How to Create a Border with CSS
  22. How to Use the CSS Padding Shorthand Property
  23. How to Create a Fly-Out Menu with CSS
  24. How to Use CSS Media Queries in Responsive Design
  25. How to Adjust Margins with CSS
  26. How to Use the CSS Background Shorthand Property
  27. How to Create a Form without Tables Using CSS
  28. How to Modify Fonts in CSS
  29. How to Create a Drop-Down Menu with CSS
  30. How to Apply Padding with CSS
  31. Fixed Positioning with CSS
  32. How to Use CSS Transitions
  33. How to Use the CSS list-style Shorthand Property
  34. How to Change Text Style in CSS
  35. How to Create CSS Sprites
  36. How to Use CSS with Different Media Types
  37. How to Import Style Sheets with @import in CSS
  38. How to Use the CSS White-Space Property
  39. How to Use the CSS Z-index Property
  40. How to Create Drop Shadows with the box-shadow Property in CSS3