Featured Post

Firefox Print Bug Prints only First Page

Are you thinking, “My browser only prints one page of a website, the first page”? Are you using Firefox? There are several instances that trigger printing errors with Firefox.  The one I have run across results from declaring overflow: hidden, overflow: auto; or overflow: scroll, which...

Read More

Firefox Print Bug Prints only First Page

Posted by David Tierney | Posted in For Programmers | Posted on 27-04-2010

0

Firefox Print BugAre you thinking, “My browser only prints one page of a website, the first page”? Are you using Firefox?

There are several instances that trigger printing errors with Firefox.  The one I have run across results from declaring overflow: hidden, overflow: auto; or overflow: scroll, which I use sometimes for its self-clearing float effect.  The easiest solution to this is to create a print style sheet that  changes all of your tags that use this to overflow: visible.

You can read more about this and other related Firefox print bugs here:  at mozilla support, and at bugzilla.mozilla.

Good luck.

Write a comment