Why website printed with Chrome is using mobile layout?

后端 未结 2 1929
借酒劲吻你
借酒劲吻你 2021-01-17 20:39

In Chrome, when printing to A4 paper, it is rendered with 568px media query width.

Try printing a responsive website such as The Verge or Bootstrap

2条回答
  •  -上瘾入骨i
    2021-01-17 21:12

    Just add this to your style sheets

    @media print {
      @page {
        size: 330mm 427mm;
        margin: 14mm;
      }
      .container {
        width: 1170px;
      }
    }
    

提交回复
热议问题