Firefox printing only 1st page

后端 未结 15 2418
佛祖请我去吃肉
佛祖请我去吃肉 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

    If you don't want to go through all of your code, this is the only thing I've found that works for me without messing up all of my other CSS:

    @media print {
      body {
        overflow: visible !important;
      }
    }
    

提交回复
热议问题