Richard S.
Richard S.

Reputation: 743

Firefox css printing issue

I have an html page that I want to print. This page has a css formatting to it. When I go to print it out in Firefox, the print preview and the printed version has my data overlapping each other on the page breaks. I am not currently controlling page breaks in my css. Here is a screen shot of the print preview in firefox. Notice the overlapping!

enter image description here

Not sure why this is happening or how to resolve. Has anyone seen this problem before? Thanks for the help

Upvotes: 4

Views: 10000

Answers (1)

Richard S.
Richard S.

Reputation: 743

Finally found the issue, and wanted to post it in case some one else runs across the same thing. In my css I had

overflow: auto;

I totally forgot I even had this in there so changing it to

overflow: visible;

that fixed the printing issue. Hope this will help someone!

Upvotes: 5

Related Questions