-1:000000000000 | 0:7b21475cc58c |
---|---|
1 <!DOCTYPE html> | |
2 <html> | |
3 <head> | |
4 <style type="text/css"> | |
5 html, body { | |
6 margin: 0; padding: 10px; | |
7 } | |
8 #abs-pos { | |
9 width: 200px; | |
10 background-color: lightgreen; | |
11 } | |
12 .margin { | |
13 height: 40px; | |
14 } | |
15 #content { | |
16 height: 100px; | |
17 background-color: green; | |
18 } | |
19 </style> | |
20 </head> | |
21 <body> | |
22 <div id="abs-pos"> | |
23 <div class="margin"></div> | |
24 <div id="content"></div> | |
25 <div class="margin"></div> | |
26 </div> | |
27 </body> | |
28 </html> |