表格标题元素导致打印时分页
考虑下表:
<table>
<caption>The caption</caption>
<thead>...</thead>
<tbody>...</tbody>
<tfoot>...</tfoot>
</table>
该表在屏幕上显示时呈现正确,但在打印时会破坏该表以显示新页面。当我删除标题元素或显示:无时,表格在打印时会正确呈现。
有什么帮助吗?
Consider the following table:
<table>
<caption>The caption</caption>
<thead>...</thead>
<tbody>...</tbody>
<tfoot>...</tfoot>
</table>
The table renders right when displaying on screen, but when printing it breaks the table for a new page. When I delete the caption element or display:none, the table renders right on printing.
Any help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据 W3C:
根据我的理解,这意味着
编辑:我找到了更准确的风格:
请告诉我这是否适合您。
有关该主题的更多详细信息,请访问此页面
According to W3C:
From my understanding this means
EDIT: I found a more accurate style:
Please tell me if this works for you.
For more detailed information about the topic, visit THIS PAGE