Forum Moderators: open
The webmaster fix:
Determining which table is causing your content problem is the first step. Usually very obvious by the where the lengthy multi-page content begins. Because Firefox is very standards compliant, you do need to be more specific with some HTML object properties... in this case, the table attributes.
The table properties for HEIGHT and WIDTH must be added to correct printing issues for lengthy tables.
For my ASP report, I included in the table tag ...
<TABLE id="idDataTable1" HEIGHT="100%" WIDTH="100%">
...table rows/cols... and content
</TABLE>
Note: tested with no content formatting malformation in FF and IE.
End-user work arounds:
In Print Preview adjust your scaling to a percentage, rather than "Shrink to Fit" width. If this does not solve your issue (most times it will), then change the print orientation to landscape. I found that to fix many tabled content issues.
Worst case scenario, is Save As HTML then follow instruction for the "webmaster fix" above.
Hope this helps with your FF print issue.
<Frank_Z>