Firefox

时间:2017-12-01 06:22:36

标签: html css twitter-bootstrap html-table

Firefox中没有显示表格边框。如果 tfoot 内的 tfoot tr 被删除,则显示边框。

<div class="container">
<div class="table-responsive">
    <table class="table table-bordered table-striped">
        <thead>
            <tr>
                <th>Name</th>
                <th>Email</th>
            </tr>
        </thead>
        <tfoot>
            <tr>
                <td>Total 1 person</td>
                <td></td>
            </tr>
        </tfoot>
        <tbody>
            <tr id="test">
                <td>Mohammed</td>
                <td>mytestmail@gmail.com</td>
            </tr>
        </tbody>
    </table>
</div>

Check it on jsFiddle

0 个答案:

没有答案