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

最佳答案

在表中的元素上设置前分页符(或后分页符)有问题。
没有解决办法。它会引起意想不到的行为。为了避免这个问题,我不得不改变页面的布局。

关于html - CSS分页符导致IE中的表格后额外的分页符,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11016280/

10-09 14:22