相关疑难解决方法(0)

如何在打印时避免额外的空白页?

我正在使用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>
Run Code Online (Sandbox Code Playgroud)

css printing

74
推荐指数
9
解决办法
12万
查看次数

标签 统计

css ×1

printing ×1