Safe width in pixels for printing web pages?

后端 未结 7 2297
无人及你
无人及你 2020-11-30 23:51

What is the safe width in pixels to print a web page?

My page includes large images and I want to make sure they will not be cut of when printed.

I know abo

7条回答
  •  攒了一身酷
    2020-12-01 00:24

    One solution to the problem that I found was to just set the width in inches. So far I've only tested/confirmed this working in Chrome. It worked well for what I was using it for (to print out an 8.5 x 11 sheet)

    @media print {
        .printEl { 
            width: 8.5in;
            height: 11in;
        }
    }
    

提交回复
热议问题