| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <style> | |
| body { | |
| margin: 0px; | |
| } | |
| #content { | |
| width: 1000px; | |
| height: 2000px; | |
| background: silver; | |
| margin: 0px; | |
| } | |
| ::-webkit-scrollbar { | |
| width: 0px; | |
| height: 0px; | |
| } | |
| #box { | |
| position: absolute; | |
| left: 450px; | |
| top: 1200px; | |
| width: 100px; | |
| height: 20px; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div id="content"> | |
| This page is 1000x2000 pixels. | |
| <input type="text" id="box"> | |
| </div> | |
| </body> | |
| </html> |