我有以下html文件......这些是全部内容:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1">
<style type="text/css">
P.breakhere
{
page-break-after: always;
}
</style>
<title></title>
</head>
<body>
<table>
<tr>
<td>
[Contents of page 1]
<p class="breakhere" style="width: 100%; text-align: right; font-weight: bold;">
Continued...
</p>
[Contents of page 2]
</td>
</tr>
</table>
[More of page 2]
</body>
</html>
这是在Windows 7 Professional SP1上安装的IE 8(版本:8.0.7601.17514)中打印3页
这应该只打印为2页,但在关闭表元素后会插入一个额外的分页符。
有什么建议吗?
答案 0 :(得分:1)
在表格内的元素上设置page-break-before(或page-break-after)时出现问题。
没有解决方法。它会导致意外行为。我不得不改变页面的布局以避免这个问题。
答案 1 :(得分:0)