OLD | NEW |
---|---|
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 | 3 |
4 <head> | 4 <head> |
5 <style> | 5 <style> |
6 body { | 6 body { |
7 margin: 0px; | 7 margin: 0px; |
8 } | 8 } |
9 #content { | 9 #content { |
10 width: 1000px; | 10 width: 1000px; |
11 height: 2000px; | 11 height: 2000px; |
12 background: silver; | 12 background: silver; |
13 margin: 0px; | |
14 } | |
15 ::-webkit-scrollbar { | |
16 width: 0px; | |
17 height: 0px; | |
18 } | 13 } |
19 </style> | 14 </style> |
20 </head> | 15 </head> |
21 | 16 |
22 <body> | 17 <body> |
23 <div id="content"> | 18 <div id="content"> |
24 This page is 1000x2000 pixels. | 19 This page is 1000x2000 pixels. |
25 </div> | 20 </div> |
26 </body> | 21 </body> |
27 | 22 |
28 </html> | 23 </html> |
OLD | NEW |