blob: 30c3b2e4a3b9b432b0034dc6309a55060694ef81 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
#abs {
position: absolute;
left: 20px; top: 20px;
width: 100px; height: 100px;
background-color: green;
}
</style>
</head>
<body>
<div id="abs"></div>
</body>
</html>
|