为行液引导设置背景颜色

时间:2015-08-31 18:32:03

标签: html css twitter-bootstrap

这里是一个简单数据表的代码,其中一些分页控件使用bootstrap设置样式,并为网格设置数据表。

<!DOCTYPE html>
<html>
  <head>
    <title>Test page, using dataTables</title>
    <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.10.8/css/dataTables.bootstrap.min.css"/>
    <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css"/>
  </head>
  <body>

  <style>
  div.dataTables_info{
    padding-top: 0px !important;
  }

  #id1{
    background-color: lightblue !important;
  }

  div.panel-body{
    padding: 0px !important;
  }
  </style>
    <div class="container">
      <div class="row">
        <div class="col-md-12">

          <div class="panel panel-default">

            <div class="panel-heading">
              Titulo tabela
            </div>

            <div class="panel-body">
              <table id="tabela" class="table table-bordered table-striped">
                <thead>
                  <tr>
                    <th>Column 1</th>
                    <th>Column 2</th>
                    <th>Column 3</th>
                  </tr>
                </thead>
                <tbody>
                  <tr>
                    <td>Value 1</td>
                    <td>Value 2</td>
                    <td>Value 3</td>
                  </tr>
                  <tr>
                    <td>Valor 1</td>
                    <td>Valor 2</td>
                    <td>Valor 3</td>
                  </tr>
                  <tr>
                    <td>Value 4</td>
                    <td>Value 5</td>
                    <td>Value 6</td>
                  </tr>
                </tbody>
              </table>
            </div>
          </div>

        </div>
      </div>
    </div>

    <script src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
    <script src="https://cdn.datatables.net/1.10.8/js/jquery.dataTables.min.js"></script>
    <script src="http://legacy.datatables.net/extras/thirdparty/ColReorderWithResize/ColReorderWithResize.js"></script>
    <script>
      (function(){
        $('#tabela').DataTable({
          "dom": 'Rrt<"row-fluid"<"#id1"<"#a.col-md-4"i><"col-md-4"l><"#b.col-md-4"p>>>'
        });
      })();
    </script>
  </body>
</html>

以上是working fiddle代码,here结果为全屏。

对于桌面型屏幕,在全屏时,包含分页控件的底行会丢失背景颜色。有没有办法保持所有屏幕宽度的背景?

3 个答案:

答案 0 :(得分:1)

您失去背景的原因是,在大屏幕上,#id1的内容会浮动。

您可以像这样添加 clearfix

#id1:after {
    content: " ";
    display: block;
    height: 0;
    clear: both;
    overflow: hidden;
    visibility: hidden;
}

https://jsfiddle.net/tnoefud0/3/embedded/result/

答案 1 :(得分:1)

Bootstrap附带clearfix。当父元素包含浮动子元素并且您希望父元素占用子元素的内容区域时,将使用clearfix。

改变这个:

<div id="id1">

到此:

<div id="id1" class="clearfix">

.col-md-4元素浮动到左侧。当一个元素被浮动时,它被从正常文档流中取出,这意味着,就父元素而言,子元素将不占用任何空间。因此,父元素的高度为none,因为子元素没有占用任何空间,因此您再也看不到背景颜色。

答案 2 :(得分:0)

 /*add*/
table.dataTable{
    margin-bottom: 0 !important;
}
#id1{
    background-color: lightblue !important;
    overflow:hidden; /*add*/
}

http://jsfiddle.net/tnoefud0/4/

看看这段代码。 为你的id1添加溢出并删除表的底部边距。