<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>
此代码无效,请帮我解决。
答案 0 :(得分:0)
您不能同时使用这些类。您需要将具有类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>