Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

CSS Print to fit page

Status
Not open for further replies.

SexyDevil82

Programmer
Joined
Jan 9, 2004
Messages
24
Location
CA
I have to design a site using a 750 pixels table.
Of course, when I print the text, my text get cut off on the right hand side.

Using a Print style sheet, is there any ways to avoid loosing the text on the right. Everywhere I look suggest to design into a 600 pixels table but they really want it to 750.

Thanks for any help.
 
You can zoom out entire document in print stylesheet with:
Code:
body
{    zoom: 0.8;
}
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top