zoukankan      html  css  js  c++  java
  • bootstrap-----流体布局解析

    流体布局容器
    容器的width为auto,只是两边加了15px的padding。

    流体布局容器
            容器的width为auto,只是两边加了15px的padding。

    <div class="container-fluid">
    <!DOCTYPE html>
    <html>
        <head>
            <meta charset="UTF-8">
            <title></title>
            <link rel="stylesheet" href="css/bootstrap.min.css" />
            <style type="text/css">
                .container-fluid{
                    border: 1px solid;
                    height: 30px;
                    background: pink;
                }
            </style>
        </head>
        <body>
            <!--流体容器   自适应-->
            <div class="container-fluid">
                container-fluid
            </div>
        </body>
        <script src="js/jquery.min.js"></script>
        <script src="js/bootstrap.min.js"></script>
    </html>
    container-fluid

    源码刨析

    .container {
      .container-fixed();
                 最小   sm=平板=800     //768px
      @media (min- @screen-sm-min) {
         @container-sm;
      }         最小   md=中屏pc=1024   //992px;
      @media (min- @screen-md-min) {
         @container-md;
      }             最小 lg=大屏pc=1232  //1200px;
      @media (min- @screen-lg-min) {
         @container-lg;
      }
    }
    .container-fluid {
      .container-fixed();
    }
    <!DOCTYPE html>
    <html>
        <head>
            <meta charset="UTF-8">
            <title></title>
            <link rel="stylesheet" href="css/bootstrap.min.css" />
            <style type="text/css">
                .container-fluid{
                    border: 1px solid;
                    
                    background: pink;
                }
            </style>
        </head>
        <body>
            <!--流体容器   自适应-->
            <div class="container-fluid">
            魏子钧 赵凡迪 刘岳 谷文 程爱华 郑硕石 赵佟 张强 蔡跃升 郁振一)        魏子钧 赵凡迪 刘岳 谷文 程爱华 郑硕石 赵佟 张强 蔡跃升 郁振一)        魏子钧 赵凡迪 刘岳 谷文 程爱华 郑硕石 赵佟 张强 蔡跃升 郁振一)        魏子钧 赵凡迪 刘岳 谷文 程爱华 郑硕石 赵佟 张强 蔡跃升 郁振一)        魏子钧 赵凡迪 刘岳 谷文 程爱华 郑硕石 赵佟 张强 蔡跃升 郁振一)        魏子钧 赵凡迪 刘岳 谷文 程爱华 郑硕石 赵佟 张强 蔡跃升 郁振一)        魏子钧 赵凡迪 刘岳 谷文 程爱华 郑硕石 赵佟 张强 蔡跃升 郁振一)        魏子钧 赵凡迪 刘岳 谷文 程爱华 郑硕石 赵佟 张强 蔡跃升 郁振一)        魏子钧 赵凡迪 刘岳 谷文 程爱华 郑硕石 赵佟 张强 蔡跃升 郁振一)
    
            </div>
        </body>
        <script src="js/jquery.min.js"></script>
        <script src="js/bootstrap.min.js"></script>
    </html>
    container-fluid
  • 相关阅读:
    HDU 3681 Prison Break 越狱(状压DP,变形)
    POJ 2411 Mondriaan's Dream (状压DP,骨牌覆盖,经典)
    ZOJ 3471 Most Powerful (状压DP,经典)
    POJ 2288 Islands and Bridges (状压DP,变形)
    HDU 3001 Travelling (状压DP,3进制)
    POJ 3311 Hie with the Pie (状压DP)
    POJ 1185 炮兵阵地 (状压DP,轮廓线DP)
    FZU 2204 7
    POJ 3254 Corn Fields (状压DP,轮廓线DP)
    ZOJ 3494 BCD Code (数位DP,AC自动机)
  • 原文地址:https://www.cnblogs.com/hack-ing/p/11811338.html
Copyright © 2011-2022 走看看