Skip to content

Instantly share code, notes, and snippets.

@iAmNathanJ
Last active August 29, 2015 14:10
Show Gist options
  • Save iAmNathanJ/ba802173a80741356fab to your computer and use it in GitHub Desktop.
Save iAmNathanJ/ba802173a80741356fab to your computer and use it in GitHub Desktop.
Multiple Canvas Backgrouds
/* CSS */
.background {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: #333;
z-index: -1;
}
.canvas {
position: absolute;
z-index: -1;
}
.back {
top: -100px;
left: -100px;
}
.mid {
top: -200px;
left: -200px;
}
.front {
top: -400px;
left: -400px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment