blob: 829055a94561ae153a23e3328c1e06290e19e5c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE html>
<style>
.green {
background-color: green;
position: fixed;
left: 0px;
top: 0px;
width: 200px;
height: 200px;
}
</style>
<body>
<div class="green"></div>
</body>
</html>
|