Safe width in pixels for printing web pages?

后端 未结 7 2305
无人及你
无人及你 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:17

    A printer doesn't understand pixels, it understand dots (pt in CSS). The best solution is to write an extra CSS for printing, with all of its measures in dots.

    Then, in your HTML code, in head section, put:

    
    
    

提交回复
热议问题