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
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; } }