blob: e9dfe88aa338ab94b30b0aefbcbe6cde2c9078c7 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style>
.box {
position: absolute;
top: 0;
left: 0;
height: 100px;
width: 100px;
}
#animating {
background-color: orange;
}
.behind {
background-color: blue;
top: 50px;
left: 50px;
z-index: 1;
}
.front {
top: 25px;
left: 25px;
background-color: green;
z-index: 2;
}
</style>
</head>
<body>
<div class="behind box"></div>
<div id="animating" class="box">
<div class="front box"></div>
</div>
</body>
</html>