<!DOCTYPE html> | |
<style> | |
#container { | |
height: 250px; | |
width: 250px; | |
border: 1px solid black; | |
transform: translateZ(0); | |
} | |
#parent { | |
position: absolute; | |
left: 320px; | |
width: 250px; | |
height: 250px; | |
background-color: green; | |
z-index: auto; | |
} | |
#child { | |
position: absolute; | |
left: 25px; | |
top: 25px; | |
width: 200px; | |
height: 200px; | |
z-index: -2; | |
background-color: red; | |
transform: translateZ(0); | |
} | |
</style> | |
<body> | |
<div id="container"> | |
<div id="parent"> | |
<div id="child"></div> | |
</div> | |
</div> | |
</body> |