blob: 8ab99437654407d84130ba92dd494dfd0445c703 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style>
div {
width: 800px;
height: 300px;
}
span {
position: absolute;
width: 120px;
line-height: 120px;
text-align: center;
color: yellow;
}
#span1 {
z-index: 2;
left: 50px;
top: 50px;
background: red;
}
#span2 {
z-index: 1;
left: 100px;
top: 100px;
background: green;
}
#span3 {
left: 150px;
top: 150px;
background: blue;
}
#div1 {
offset-position: 400px 150px;
}
#div2 {
offset-position: auto;
}
</style>
</head>
<body>
<div id="div1">
<span id="span1">First</span>
</div>
<div id="div2">
<span id="span2">Second</span>
</div>
<div id="div3">
<span id="span3">Third</span>
</div>
</body>
</html>