1. 程式人生 > >Bootstrap3基礎 柵格系統 標尺(col-lg/md/sm/xs-1)

Bootstrap3基礎 柵格系統 標尺(col-lg/md/sm/xs-1)

公開 col block max ots char 使用 width min

禮悟:
   公恒學思合行悟,尊師重道存感恩。葉見尋根三返一,江河湖海同一體。
虛懷若谷良心主,願行無悔給最苦。讀書鍛煉養身心,誠勸且行且珍惜。


   ide:visual studio 2017  
browser:Chrome / Firefox
  bootstrap:3.3.7

代碼

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <title></title>

    <link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.min.css" />
    <script type="text/javascript" src="bootstrap/js/jquery.min.js"></script>
    <script type="text/javascript" src="bootstrap/js/bootstrap.min.js"></script>

    <style type="text/css">
        div[class*="col-"] {
            border:1px solid red;
        }

        .row {
            border:1px solid blue;
        }
    </style>

</head>
<body>
    <div class="container">
        <div class="row">
	      <div class="col-lg-1 col-md-1 col-sm-1 col-xs-1"> </div>
            <div class="col-lg-1 col-md-1 col-sm-1 col-xs-1"> </div>
            <div class="col-lg-1 col-md-1 col-sm-1 col-xs-1"> </div>
            <div class="col-lg-1 col-md-1 col-sm-1 col-xs-1"> </div>
            <div class="col-lg-1 col-md-1 col-sm-1 col-xs-1"> </div>
            <div class="col-lg-1 col-md-1 col-sm-1 col-xs-1"> </div>
            <div class="col-lg-1 col-md-1 col-sm-1 col-xs-1"> </div>
            <div class="col-lg-1 col-md-1 col-sm-1 col-xs-1"> </div>
            <div class="col-lg-1 col-md-1 col-sm-1 col-xs-1"> </div>
            <div class="col-lg-1 col-md-1 col-sm-1 col-xs-1"> </div>
            <div class="col-lg-1 col-md-1 col-sm-1 col-xs-1"> </div>
            <div class="col-lg-1 col-md-1 col-sm-1 col-xs-1"> </div>
        </div>
    </div>
</body>
</html>

  

效果

技術分享圖片

擴展

  給最苦 在使用bootstrap開發網頁時,這套標尺幫了很多的忙。


Bootstrap,優秀的前端開源框架,值得學習。
學習資源:v3.bootcss.com + itcast和itheima視頻庫 + 清凈的心地。如果您有公開的資源,可以分享給我的話,用您的資源學習也可以。
博文是觀看視頻後,融入思考寫成的。博文好,是老師講得好。博文壞,是 給最苦 沒認真。

Bootstrap3基礎 柵格系統 標尺(col-lg/md/sm/xs-1)