OLD | NEW |
---|---|
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 | 3 |
4 <head> | 4 <head> |
5 <meta name="viewport" content="width=200"> | 5 <meta name="viewport" content="width=200"> |
6 <style> | 6 <style> |
7 ::-webkit-scrollbar { | 7 ::-webkit-scrollbar { |
8 width: 0px; | 8 width: 0px; |
9 height: 0px; | |
9 } | 10 } |
10 body { | 11 body { |
11 margin: 0px; | 12 margin: 0px; |
12 } | 13 } |
13 #content { | 14 #content { |
14 background: silver; | 15 background: silver; |
15 width: 200px; | 16 width: 200px; |
16 height: 300px; | 17 height: 300px; |
17 } | 18 } |
18 </style> | 19 </style> |
19 </head> | 20 </head> |
20 | 21 |
21 <body> | 22 <body> |
22 <div id="content">a</div> | 23 <div id="content">a</div> |
23 </body> | 24 </body> |
24 | 25 |
25 </html> | 26 </html> |
OLD | NEW |