Mozilla Destek’te Ara

Destek dolandırıcılığından kaçının. Mozilla sizden asla bir telefon numarasını aramanızı, mesaj göndermenizi veya kişisel bilgilerinizi paylaşmanızı istemez. Şüpheli durumları “Kötüye kullanım bildir” seçeneğini kullanarak bildirebilirsiniz.

Daha Fazlasını Öğren

printing from firefox spits out extra blank page

  • 3 yanıt
  • 34 kişi bu sorunu yaşıyor
  • 1 gösterim
  • Son yanıtı yazan: kasapo

more options

When I print from Firefox my printer firsts spits out a blank page before printing what was expected.

When I print from Firefox my printer firsts spits out a blank page before printing what was expected.

Tüm Yanıtlar (3)

more options

Does a blank page appear first in Print Preview?

more options

I have a similar issue -- a page before is printed and after the actual document.

yes -- the blank page appears in preview. I was able to get rid of the first one with this CSS:

@media print { ...

  body * { float: none !important; }

... }

But I still get the blank page afterwards.

Not sure why, but I'll let you know if I find anything else

more options

I found the culprit for me:

I had a floating div that was holding a sidebar menu. Turning float off fixed the first page issue, but then rendered the (empty) div AFTER the main content of the page, because it was no longer floating and also had its min-height and width properties set.

Simply adding { display: none; } to my "right-col" div did the trick.