-1:000000000000 | 0:5ea7877a55ec |
---|---|
1 <!DOCTYPE html> | |
2 <html> | |
3 <head> | |
4 <style type="text/css"> | |
5 .separator { | |
6 height: 20px; | |
7 background-color: green; | |
8 } | |
9 .margin { | |
10 height: 20px; | |
11 } | |
12 #overflow { | |
13 overflow-y: scroll; | |
14 height: 40px; | |
15 background-color: green; | |
16 } | |
17 </style> | |
18 </head> | |
19 <body> | |
20 <div class="separator"></div> | |
21 <div class="margin"></div> | |
22 <div id="overflow"></div> | |
23 <div class="margin"></div> | |
24 <div class="separator"></div> | |
25 </body> | |
26 </html> |