gpt4 book ai didi

css - 打印时如何避免最后出现额外的空白页?

转载 作者:数据小太阳 更新时间:2023-10-29 09:08:16 31 4
gpt4 key购买 nike

我正在使用 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>

最佳答案

你试过吗?

@media print {
html, body {
height: 99%;
}
}

关于css - 打印时如何避免最后出现额外的空白页?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7846346/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com