Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS CSS Auto zoom to one page only while printing Reply To: CSS Auto zoom to one page only while printing

#245048
bearhead
Participant

You could possibly do it like so:

@media print {
body{
  transform:scale(.5);
}
}

Of course, the right scale factor would be something you would have to figure out .