display:table-header-group在Android webview中不起作用

时间:2016-11-21 12:11:15

标签: android html css printing android-webview

我有一张长桌,我想打印它。我需要在每个页面上重复<th>,因此我使用<thead>

<table>
        <thead>
            <tr><th>heading</th></tr>
        </thead>
        <tfoot>
            <tr><td>notes</td></tr>
        </tfoot>
        <tbody>
        <tr><td>x</td></tr>     
        <tr><td>x</td></tr> 
        <!-- more rows -->
        </tbody>
</table>

我在网页上搜索每页重复<thead>,然后我找到了这个css:

thead { display:table-header-group; }
tfoot { display:table-footer-group; }

因此,当我在firefox中单击打印时,我会在每个页面上正确显示标题,但是当我在Android中打开文档并想要打印时,标题不会显示。有没有解决方案或替代方式?
编辑:这张照片更好地展示了我的问题:
what I want

0 个答案:

没有答案