Firefox printing only 1st page

后端 未结 15 2434
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-14 05:40

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

15条回答
  •  爱一瞬间的悲伤
    2020-12-14 06:08

    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.

    @media print {
      body {
        height: auto;
      }
    }
    

提交回复
热议问题