0
這是必需的behavior(jsfiddle)。在dompdf中設置頁腳
<!--Footer-->
<div id="footer">
<span class="alignleft">$unique_ID</span>
<span class="alignright"> Page <span class="pagenum"></span></span>
<div style="clear: both"></div>
</div>
.footer {
width: 100%;
position: fixed;
}
.footer {
bottom: 0px;
}
.pagenum:before {
content: counter(page);
}
.alignleft {
float: left;
}
.alignright {
float: right;
}
但使用其中dobmpdf用來渲染後的HTML完全相同的代碼時,結果
如何來解決這個問題。 ($ unique_ID是一個php變量)