blob: 4608e54b2082aef805dce8b5bbff2c2cc82c41e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<!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>
|