6

I use this meta to show my desktop version in mobile.

<meta name="viewport" content="width=1220">

Now I want this to be rendered in print too. When I want to print the page, in portrait version my screen is cutted of. Is there a meta for this in print? How can I zoom out my page for print too?

Related question for mobile is here RWD: Show Desktop version in mobile minified, without horizontal scroll

Community
  • 1
  • 1
FrontDev
  • 837
  • 5
  • 19

1 Answers1

7
    @media print{@page {size: landscape}}

    @page { size : portrait }
    @page rotated { size : landscape }

stackoverflow -landscape printing from html

tutorialspoint - css paged media

Community
  • 1
  • 1
CreativeCreator
  • 220
  • 1
  • 9