3

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

有什么建议么?

4

2 回答 2

1

在表格内的元素上设置 page-break-before(或 page-break-after)存在问题。

没有解决方法。这将导致意外的行为。我不得不改变页面的布局以避免这个问题。

于 2012-06-13T16:46:14.807 回答
0

尝试使用:

page-break-inside:avoid

http://www.w3schools.com/cssref/pr_print_pagebi.asp

于 2012-07-11T13:20:22.043 回答