front page 2003

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do I make a fixed page size eg. standard letter 8.5 by 11

I have many pages and I want to see exactly where a page starts and stops
for planning and printing.
 
In general, web pages do not have sizes. They are as wide (sometimes
wider) as the browser, and as long as required to display the content.

The closest you can get to a fixed "standard letter" size, is to use a
container <div> with a width of 630px, and height of 820px, and set
overflow to scroll.

Example:

<body>
<div style="margin: 0 auto; width: 630px; height: 820px; overflow:
auto;">page content here</div>
</body
 
Back
Top