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
  • 相关阅读:
    2020牛客多校第二场A.All with Pairs hash+kmp
    2020杭电多校第三场
    2020牛客多校第六场K.K-Bag (思维?)
    2020牛客多校第六场 G.Grid Coloring 构造
    2020杭电多校第一场
    2020牛客暑期多校训练营(第三场)D.Points Construction Problem 构造
    ACM模板_axiomofchoice
    关于deque的行为分析
    Codeforces Round #665 (Div. 2) 题解 (CDEF)
    Codeforces Global Round 10 题解 (DEF)
  • 原文地址:https://www.cnblogs.com/hack-ing/p/11811338.html
Copyright © 2011-2022 走看看