Forum Moderators: not2easy
I also want the text to stretch clear across the printed piece of paper, within the user's printer margins, of course. What factors need to be taken into account to get a good printed page? For instance, if I just put all the text into a 100% wide div, will it all print on the paper, wrapping as necessary? And what about page breaks? Does screen-resolution come into play here?
Any advice will be appreciated. Last redesign I went on a CSS binge (upgrade from tables). For this redesign I'm going even more gung-ho on CSS, but accessibility is my primary concern. And naturally print stylesheets are part of that! ;o)
Thanks,
Matthew
On an HTML page the containing element is the <body> tag.
On a printed page the containing element is the printable area.
So in other words, yeah it will wrap properly.
As for page breaks, CSS has support for paged media but I don't think many browsers handle it.
Also note that different browsers print pages slightly differently, so don't assume that a fluid layout (or even a non-fluid one!) will appear to the user the way you see it. But, as a designer of fluid web pages, you would presumably have expected that :-)
And, of course, your print stye sheet should hide the "top of page" links as well as the menu ;-)