Skip to content

Instantly share code, notes, and snippets.

@jonbellah
Created May 21, 2014 14:32
Show Gist options
  • Save jonbellah/b747ac62f5ebe116be14 to your computer and use it in GitHub Desktop.
Save jonbellah/b747ac62f5ebe116be14 to your computer and use it in GitHub Desktop.
Multiple Background Images
body {
background: url(image3.png) 10px 10px no-repeat, /* On top, like z-index: 3; */
url(image2.png) 10px 10px no-repeat, /* like z-index: 2; */
url(image1.png); /* On bottom, like z-index: 1; */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment