Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Learn More

Firefox 119.0 Print Preview missing orientation option!

more options

The "Layout.css.page-size.enabled" configuration parameter = False ,worked effectively in previous versions, but after updating to Firefox 119.0, it no longer works whether I set it to True or False.

Orientation option is missing when I try to print documents from a website. The Firefox Print Preview window, which usually allows orientation choices for printing, is now not available.

Please advise. Thanks!

The "Layout.css.page-size.enabled" configuration parameter = False ,worked effectively in previous versions, but after updating to Firefox 119.0, it no longer works whether I set it to True or False. Orientation option is missing when I try to print documents from a website. The Firefox Print Preview window, which usually allows orientation choices for printing, is now not available. Please advise. Thanks!
Đính kèm ảnh chụp màn hình

Tất cả các câu trả lời (8)

more options

This is probably due to bug 1851098.

more options

so, are we waiting for the next update or what? how can i choose orientation?

more options

The best option for you is to file another bug report here: https://bugzilla.mozilla.org/enter_bug.cgi

more options

Maria T. said

so, are we waiting for the next update or what? how can i choose orientation?

I posted a less convenient workaround in this thread:

https://support.mozilla.org/en-US/questions/1429073#answer-1614190

more options

The use of @media print @page size causes firefox after updating to 119.* to hide the portrait / landscape option as you can try with this html:

  <style>
      @media print {
          @page {
              size: A4;
         }
  }
  </style>
  <input>
more options

frankMoz said

The use of @media print @page size causes firefox after updating to 119.* to hide the portrait / landscape option as you can try with this html:

Hi frankMoz, yes, this started in Firefox 114: if a site (or the built-in PDF viewer) sets the paper size, Firefox locks the orientation to match. From Firefox 114-118 there was a preference to instruct Firefox to ignore page-size rules, but that preference was removed in Firefox 119. Right now, the only workaround I'm aware of is change the paper size rule to specify the page size in the orientation you want. Please refer to my reply in this thread:

https://support.mozilla.org/en-US/questions/1429073#answer-1614190

more options

Hi jscher2000, thank you. In my case the problem occurs in a SPA's included third party library. I avoid it by using

   <style>
         @media print {
             @page {
                 size: unset;
            }
     }
     </style>
 

in a globally included style sheet.

Được chỉnh sửa bởi frankMoz vào

more options

frankMoz said

I avoid it by using <style> @media print { @page { size: unset; } } </style> in a globally included style sheet.

Good idea.