bootstrap printing width

前端 未结 3 520
旧巷少年郎
旧巷少年郎 2021-02-12 11:00

I\'m using bootstrap in an app and as you can see (below) when printing the browser (left side) is using a really small width when printing (right) so the responsive layout is m

3条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-02-12 11:42

    For Bootstrap 3, this solved my problem:

    @media print {
      .container {
        width:100%;
      }
    }
    

提交回复
热议问题