Remove blank page when printing on google chrome

China☆狼群 提交于 2019-12-23 17:35:12

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!