mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
16 lines
400 B
HTML
16 lines
400 B
HTML
<!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>
|