如何避免打印时末尾有多余的空白页?

我正在使用CSS属性,

如果我使用page-break-after: always;=>它会在之前打印一个额外的空白页

如果我使用page-break-before: always;=>,它将在以后打印额外的空白页。

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

<title>Insert title here</title>

<style type="text/css">

.print{

page-break-after: always;

}

</style>

<script type="text/javascript">

window.print();

</script>

</head>

<body>

<div class="print">fd</div>

<div class="print">fdfd</div>

</body>

</html>

回答:

您也许可以添加

.print:last-child {

page-break-after: auto;

}

因此最后一个print元素将不会获得额外的分页符。

请注意,如果您以浏览器的目标为目标,则IE8不支持:last-child选择器。

以上是 如何避免打印时末尾有多余的空白页? 的全部内容, 来源链接: utcz.com/qa/400447.html

回到顶部