我有一个网页(INVOICE),看起来像这样
我曾使用html,css和php来创建此页面。 我正在使用
从java脚本打印此页面windows.print();
整个页面都在TABLE标签中。当内容超过一页时页面看起来像这样,当两个页面中断时我需要一个边框底部, 请帮帮我。
提前致谢
答案 0 :(得分:0)
阅读css中的分页符。他们可以引导你走上正确的道路。
http://css-tricks.com/almanac/properties/p/page-break/
还阅读了这个答案https://stackoverflow.com/a/8712756/406659
<style type="text/css">
table { page-break-inside:auto }
tr { page-break-inside:avoid; page-break-after:auto }
</style>