Skip to content

Instantly share code, notes, and snippets.

@cmdr2
Last active August 29, 2015 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cmdr2/517f57bddc616b7b3e98 to your computer and use it in GitHub Desktop.
Save cmdr2/517f57bddc616b7b3e98 to your computer and use it in GitHub Desktop.
sq0.html
<!DOCTYPE html>
<html>
<head>
<style>
#sq0 {
left: 300px;
top: 350px;
z-index: -250;
background: red;
}
#sq1 {
left: 240px;
top: 300px;
z-index: -280;
background: black;
}
#sq2 {
left: 350px;
top: 260px;
z-index: -330;
background: green;
}
.square {
width: 100px;
height: 100px;
position: absolute;
}
</style>
</head>
<body>
<div id="sq0" class="square"></div>
<div id="sq1" class="square"></div>
<div id="sq2" class="square"></div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment