Published: 10/25/09 08:26 PM
Here’s a short article on how to fix this nasty firefox problem:
simply remove any css-setting like
overflow:auto/hidden/scroll , etc
So if you have a css like this:
@media all{ html{ /*fix ugly jumps for horizontally centered content when scrollbar appears*/ overflow-y:scroll; } #content { /*create a separate floating space*/ overflow:auto; } }
just add the following:
@media print{ html, #content{ overflow:visible; } }