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; | |
13 } | 18 } |
14 </style> | 19 </style> |
15 </head> | 20 </head> |
16 | 21 |
17 <body> | 22 <body> |
18 <div id="content"> | 23 <div id="content"> |
19 This page is 1000x2000 pixels. | 24 This page is 1000x2000 pixels. |
20 </div> | 25 </div> |
21 </body> | 26 </body> |
22 | 27 |
23 </html> | 28 </html> |
OLD | NEW |