<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
body{
margin: 0;
}
.box{
position: absolute;
width: 150px;
height: 150px;
}
.box:nth-child(1){
background: green;
z-index: 1;
}
.box:nth-child(2){
background: red;
width: 100px;
height: 100px;
}
.box:nth-child(3){
background: blue;
width: 50px;
height: 50px;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.