I\'m working on print friendly css for a website. It previews/prints perfectly in IE, but Firefox (version 3.6) only previews/prints the 1st page.
Is anyone aware of
I had the same issue because the height of body is set to 100%, after I modified to height: auto in my print.css, it worked.
height
body
100%
height: auto
print.css
@media print { body { height: auto; } }