blob: a139827f2c40e646c5d17615f5e9b49a75c30a4b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!DOCTYPE html>
<html>
<head>
<style>
div { position: absolute; top: 0; left: 0; width: 100px; height: 100px; }
div.offset { left: 100px; }
div.offset2 { left: 200px; }
</style>
</head>
<body>
<div style="background: green"></div>
<div class="offset" style="background: green"></div>
<div class="offset2" style="background: green"></div>
</body>
</html>
|