【发布时间】:2016-09-29 20:41:51
【问题描述】:
我正在尝试构建一个内部带有表格的面板。代码如下所示:
<div class="container">
<div class="row">
<div class="panel panel-default col-xs-12">
<div class="panel">
<div class="panel-heading bg-primary">
<h3 class="panel-title">This is a panel</h3>
</div>
<div class="panel-body">
<p>What is Lorem Ipsum?
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p.
</div> <!-- panel body -->
<!-- Table inside the panel -->
<table class="table">
<thead>
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Email</th>
</tr>
</thead>
<tbody>
<tr>
<td>John</td>
<td>Doe</td>
<td>john@example.com</td>
</tr>
<tr>
<td>Mary</td>
<td>Moe</td>
<td>mary@example.com</td>
</tr>
<tr>
<td>July</td>
<td>Dooley</td>
<td>july@example.com</td>
</tr>
</tbody>
</table>
</div> <!-- panel -->
</div> <!-- row -->
</div> <!-- container -->
面板在大多数屏幕尺寸上看起来都不错,除了桌面打破面板的移动设备。我不确定我做错了什么,因为该示例与 Bootstrap 网站上的示例非常相似,并且它似乎对所有屏幕尺寸都有响应。谢谢!
【问题讨论】:
标签: html css twitter-bootstrap multiple-columns