Bootstrap 3 - Print / PDF

后端 未结 3 861
时光取名叫无心
时光取名叫无心 2021-02-04 17:36

I need to print my CV but the old trick


isn\'t working anymore s

3条回答
  •  耶瑟儿~
    2021-02-04 18:08

    Adding a print media query worked for me. This is what I finally stumbled onto.

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

提交回复
热议问题