如何打印带有边框的动态内容而不会中断页面​​?

时间:2019-03-18 13:57:49

标签: html css pdf printing

ol标记内的内容的长度将是动态的(由用户输入)。在这种情况下,是否可以在每页中打印带有边框的方法?我无法使用JS,因为我正在使用的当前模块是将纯html转换为pdf。

Currently, the border works for the first page only since I put a static height.

<div style="border: 1px solid #999; margin-top:11px; height:270mm;">
    <table border="0" cellpadding="0" cellspacing="0" style="width:100%; word-break: break-word;">
	<tr>
	    <td colspan="2" style="text-align:left; vertical-align:bottom;height:20px">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</td>
	</tr>
	<tr>
	    <td colspan="2" style="text-align:left; vertical-align:bottom;height:50px; text-align:justify">
	        <ol style="padding-left: 10px; padding-right: 10px; margin-top: 0.5em; margin-bottom: 0.5em;">LONG CONTENT HERE</ol>
	    </td>
        </tr>
    </table>
</div>

1 个答案:

答案 0 :(得分:0)

您可以尝试使用pdf.js。它具有强大的功能。