在Google Chrome上打印时删除空白页

时间:2016-07-16 23:36:04

标签: css google-chrome printing

我使用@media print {}对打印进行一些更改。但是当我在Google Chrome中看到打印预览时,底部会显示一个额外的空白页面。如何删除它?我尝试了一些代码,但它仍然无法正常工作。

div:last-child{
    page-break-after: auto !important;
}
body,html{
    height:auto !important;
    min-height:200px;
}

1 个答案:

答案 0 :(得分:2)

尝试使用此方法:

* {
  font-size: 1em !important;
  line-height: 1 !important;
}