Force A5 Paper-size in Chrome's print settings CSS

后端 未结 2 784
遇见更好的自我
遇见更好的自我 2021-01-12 00:20

I\'ve to print out 2 html pages in a web-app. The first page must be printed out in A5 size , the second in A4 size. I tried to force the

2条回答
  •  一整个雨季
    2021-01-12 00:33

    Using this media query content will adjust for A5.

    @media print
    {
        @page
        {
             size: 8.5in 11in; 
        }
    }
    

提交回复
热议问题