mirror of
https://github.com/servo/servo
synced 2026-05-12 09:56:50 +02:00
13 lines
244 B
HTML
13 lines
244 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
div {
|
|
position: absolute;
|
|
width: 50px;
|
|
height: 50px;
|
|
background: green;
|
|
}
|
|
</style>
|
|
<div style="top: 50px; left: 50px"></div>
|
|
<div style="top: 100px; left: 50px"></div>
|
|
<div style="top: 100px; left: 100px"></div>
|