问题
I use @media print {} to make some changes on print. But when I see the print preview in Google chrome it shows an extra blank page on the bottom. How to remove it ? I try some code for it but it still not working.
div:last-child{
page-break-after: auto !important;
}
body,html{
height:auto !important;
min-height:200px;
}
回答1:
Try use this method:
* {
font-size: 1em !important;
line-height: 1 !important;
}
来源:https://stackoverflow.com/questions/38416591/remove-blank-page-when-printing-on-google-chrome