我向表的包装div中添加了表响应类,它在除Firefox移动版(至少Android)和滚动条之外的所有浏览器中都正常工作,没有显示任何想法?

ps。我访问了站点中的其他问题,但是我的表是普通表,没有字段集或其他问题中提到的其他内容。

这是我的代码:

<div class="table-responsive">
    <table class="table">
        <thead>
            <tr>
                <th>foo</th>
                <th>foo</th>
                <th>foo</th>
                <th>foo</th>
                <th>foo</th>
                <th>foo</th>
            </tr>
        </thead>
        <tbody>
            <tr>
                <td>
                    <span>foo</span>
                    till
                    <br>
                    <span>foo</span>
                </td>
                <td>200</td>
                <td>50%</td>
                <td>100</td>
                <td>100</td>
                <td>
                    <a
                      style="min-width: 78px; display: inline-block;"
                      href="#"
                      class="addticket-modalrun btn btn-success btn-xs"
                      data-toggle="modal"
                      data-price="100"
                      data-stock="100"
                      data-priceformat="100"
                      data-ticketid="11"
                      data-target="#addToCartModal">
                      foo
                    </a>
                </td>
            </tr>
        </tbody>
    </table>
</div>

最佳答案

@Mohsenkw能否请jsfiddle您的代码并在此处发送链接?
我可能会修复它。

谢谢 :)

关于html - 引导表响应无法在Firefox移动设备上运行,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36972565/

10-12 06:53