调整浏览器大小时,Bootstrap表扩展到面板之外

时间:2016-09-29 20:41:51

标签: html css twitter-bootstrap multiple-columns

我正在尝试构建一个包含表格的面板。代码如下所示:

<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 --> 

面板在大多数屏幕尺寸上看起来都是o.k,除了桌子打破面板的移动屏幕。我不确定我做错了什么,因为这个示例与Bootstrap网站上的示例非常相似,似乎对所有屏幕尺寸都有响应。谢谢!

Table breaking the panel

2 个答案:

答案 0 :(得分:0)

您是否为父div尝试了.table-responsive课程?

<div class="table-responsive">
  <table class="table">
   ...
  </table>
</div>

答案 1 :(得分:0)

尝试在panel

中包装.table

col-xs-12换行table并从面板中删除col类(面板将始终跨越其父级的全宽)

panel-body

中加入<p>

我还注意到panel-body中没有关闭<div class="container"> <div class="row"> <div class="col-xs-12"> <div class="panel panel-default"> <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> <!-- Table inside the panel --> <div class="table-responsive"> <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> </div> </div>标记:p

希望这有帮助!

&#13;
&#13;
/**
 * Zooms a Route (given a List of LalLng) at the greatest possible zoom level.
 *
 * @param googleMap: instance of GoogleMap
 * @param lstLatLngRoute: list of LatLng forming Route
 */
public void zoomRoute(GoogleMap googleMap, List<LatLng> lstLatLngRoute) {

    if (googleMap == null || lstLatLngRoute == null || lstLatLngRoute.isEmpty()) return;

    LatLngBounds.Builder boundsBuilder = new LatLngBounds.Builder();
    for (LatLng latLngPoint : lstLatLngRoute)
        boundsBuilder.include(latLngPoint);

    int routePadding = 100;
    LatLngBounds latLngBounds = boundsBuilder.build();

    googleMap.moveCamera(CameraUpdateFactory.newLatLngBounds(latLngBounds, routePadding));
}
&#13;
&#13;
&#13;