Skip to content

Instantly share code, notes, and snippets.

@towry
Created April 6, 2015 18:12
Show Gist options
  • Save towry/45c3c0e12173a6387652 to your computer and use it in GitHub Desktop.
Save towry/45c3c0e12173a6387652 to your computer and use it in GitHub Desktop.
<style>
.b {
width: 100px;
height: 100px;
background-color: blue;
margin-top: -30px;
}
.b-child {
width: 50px;
height: 50px;
background: green;
position: absolute;
z-index: 6;
}
.a {
position: absolute;
z-index: 5;
top: 0;
left: 0;
height: 100px;
width: 100px;
background-color: red;
}
</style>
<div class="b">
<div class="b-child"></div>
</div>
<div class="a">
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment