Source Code: (back to article)
<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
<style>
.container {
position: relative;
width: 0;
height: 0;
}
.example {
position: absolute;
left: 100px;
top: 100px;
}
</style>
</head>
<body>
<div class="container">
<div class="example">
This is a 100px offset from where it should be, from the top and left.
</div>
</div>
</body>
</html>