底部TFOOT只在第一页

时间:2019-01-30 16:34:10

标签: html css printing html-table footer

我想用重复的页眉和页脚打印多页表,一切似乎都正常。

我的问题是页脚在第一页中是正确的,但是在第二页中,页脚没有停留在底部,它直接跟随tbody的内容。

我想在每个页面的底部,推动这一脚注。

这是我的html代码:

def deStringify(self):
    decoder=json.decoder.JSONDecoder()
    self.someListOfIds = decoder.decode(self.someListOfIds)
    return self

我的CSS如下:

<table class="report-container">
<thead class="report-header">
<tr>
<th class="report-header-cell">
<div class="header-info">
HEADER
</div>
</th>
</tr>
</thead>
<tfoot class="report-footer">  
   <tr> 
      <td class="report-footer-cell">
        <div class="footer-info">
FOOTER
        </div>
      </td>
   </tr>
</tfoot>
<tbody class="report-content">
<tr> 
<td class="report-content-cell">
<div class="main">
CONTENT OF THE MUTIPAGE
</div>
</td>
</tr>
</tbody>
</table>

0 个答案:

没有答案