Including content in a div that has a CSS width property set to 1000px will work in different browsers.
CSS
div.content { width: 1000px }
HTML:
<body> <div class="content"> ... </div> <body>
However, consider using 960 pixels instead of 1000. This is a reliable standard that runs on most devices to the screen width of 1024 pixels, including space for scroll bars, etc.
Pekka 웃
source share