Created
May 21, 2014 14:32
-
-
Save jonbellah/b747ac62f5ebe116be14 to your computer and use it in GitHub Desktop.
Multiple Background Images
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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