【问题标题】:Bootstrap 3 table-responsive not working with col-lg-12Bootstrap 3 表响应不与 col-lg-12 一起使用
【发布时间】:2026-01-11 00:55:02
【问题描述】:
<div class="col-lg-12 table-responsive">
    <table class="table">
            <tr>
                <th>Sender</th>
                <th width="60%">Messages</th>
                <th>Date/Time</th>
            </tr>
    </table>
</div>

此代码不起作用,请帮助我。

【问题讨论】:

    标签: twitter-bootstrap responsive-design html-table


    【解决方案1】:

    您不能同时使用这些类。您需要将具有 table-responsive 类的 div 包装在具有 col-lg-12 类的容器中。

    <div class="col-lg-12">
        <div class="table-responsive">
            <table class="table">
                    <tr>
                        <th>Sender</th>
                        <th width="60%">Messages</th>
                        <th>Date/Time</th>
                    </tr>
            </table>
        </div>
    </div>
    

    【讨论】: