blob: fdfdc48f5f5f5199e725a8f31bb7e835feef41cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!DOCTYPE HTML>
<style>
body {
background-color: green;
}
#thediv {
width: 300px;
height: 100px;
position: absolute;
top: 20px;
left: 20px;
}
</style>
<div id="thediv">Foo</div>
|