答案 0 :(得分:1)
最简单的方法可能是为您的两个侧边栏使用固定定位并绝对单独定位您的内容。通过并包括dompdf 0.7.0,固定位置内容将在页面上复制,而绝对定位的内容当前仅在当前页面上呈现。
@page { margin: 50px 120px; }
.left-col { position: fixed; left: -1100px; top: 0px; bottom: 0px; width: 80px; background-color: green; }
.left-col.content { position: absolute; padding: 5px; font-size: .85em; }
.right-col { position: fixed; right: -1100px; top: 0px; bottom: 0px; width: 80px; background-color: brown; }
<div class="left-col"></div>
<div class="left-col content">
<!-- first-page column content -->
</div>
<div class="right-col"></div>
<div>
<!-- main document content -->
</div>