front page 2003

A

aldan

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.
 
R

Ronx

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
 
X

Xero

maybe you can make use of the Page Size option located at the bottom right
corner?
 
Top