bootstrap布局容器
作者:互联网
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"> <title>Document</title> <link rel="stylesheet" href="./css/normalize.css"> <link rel="stylesheet" href="./css/bootstrap.min.css"> <style> .col-xs-6{ /* height: 300px; */ } .col-xs-6:first-child{ background-color: red; } .col-xs-6:last-child{ background-color: blue; } </style> </head> <body> <div class="container"> <div class="row"> <div class="col-xs-6 col-md-3"></div> <div class="col-xs-6 col-md-3"></div> </div> <div class="row"> <!-- row-no-gutters 删除网格间距--> <div class="col-xs-6 col-sm-3">.col-xs-6 .col-sm-3</div> <div class="col-xs-6 col-sm-3">.col-xs-6 .col-sm-3</div> <!-- Add the extra clearfix for only the required viewport --> <div class="clearfix visible-xs-block"></div> <div class="col-xs-6 col-sm-3">.col-xs-6 .col-sm-3</div> <div class="col-xs-6 col-sm-3">.col-xs-6 .col-sm-3</div> </div> </div> <script src="./js/jquery.min.js"></script> <script src="./js/bootstrap.min.js"></script> <script> </script> </body> </html>
如果在一个 .row
内包含的列(column)大于12个,包含多余列(column)的元素将作为一个整体单元被另起一行排列。
2.为任意 <table>
标签添加 .table
类可以为其赋予基本的样式 — 少量的内补(padding)和水平方向的分隔线。这种方式看起来很多余!?但是我们觉得,表格元素使用的很广泛,如果我们为其赋予默认样式可能会影响例如日历和日期选择之类的插件,所以我们选择将此样式独立出来。
通过 .table-striped
类可以给 <tbody>
之内的每一行增加斑马条纹样式。
添加 .table-bordered
类为表格和其中的每个单元格增加边框。
通过添加 .table-hover
类可以让 <tbody>
中的每一行对鼠标悬停状态作出响应。
通过添加 .table-condensed
类可以让表格更加紧凑,单元格中的内补(padding)均会减半。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"> <title>Document</title> <link rel="stylesheet" href="./css/normalize.css"> <link rel="stylesheet" href="./css/bootstrap.min.css"> </head> <body> <h1 class="text-danger">h1</h1> <h1 class="bg-danger">h1</h1> <a href="#" class="btn btn-danger">按钮</a> <table class="table table-bordered table-striped table-hover"> <thead> <tr> <td>列1</td> <td>列1</td> <td>列1</td> </tr> </thead> <tbody> <tr class="danger"> <td>列1</td> <td>列1</td> <td>列1</td> </tr> <tr class="bg-danger"> <td>列1</td> <td>列1</td> <td>列1</td> </tr> <tr> <td>列1</td> <td>列1</td> <td>列1</td> </tr> </tbody> </table> </body> </html>
标签:容器,bootstrap,样式,布局,添加,sm,xs,table,col 来源: https://www.cnblogs.com/wangruoyi/p/15651357.html