blob: 652480e812d0ff3fc83ab6dce8c7cc908df288f1 [file] [log] [blame]
<!DOCTYPE html>
<!--
| Like "top", but specifies how far a box's left margin edge is offset
| to the right of the left edge of the box's containing block. For relatively
| positioned boxes, the offset is with respect to the left edge of the box
| itself.
| https://www.w3.org/TR/CSS21/visuren.html#position-props
-->
<html>
<head>
<style>
.green {
background-color: green;
display: inline-block;
height: 100px;
width: 100px;
}
.blue {
background-color: blue;
display: inline-block;
height: 100px;
width: 100px;
}
.containing-block {
position: relative;
width: 300px;
}
.absolutely-positioned {
position: absolute;
left: 100px;
}
.relatively-positioned {
position: relative;
left: -200px;
}
</style>
</head>
<body>
<div class="containing-block">
<div class="blue absolutely-positioned"></div><div class="green"></div>
</div>
<div class="blue"></div><div class="blue"></div><div class="green relatively-positioned"></div>
</body>
</html>