我有以下 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 页,但在表格元素关闭后会插入一个额外的分页符。
有什么建议么?