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
  • 相关阅读:
    解决silverlight中“跨线程访问无效”错误
    VS 制作自定义安装程序
    SQL Server 2005开窗函数的使用
    主要邮件服务器地址
    sql数据库的备份还原操作出现的常见问题
    先安装ArcGIS9.3 后VS2008 出现的问题
    无法启动调试 未安装silverlight developer 运行时 解决办法
    SQL中ROW_NUMBER()的使用
    运用PMI主义
    Understanding the error message: “Login failed for user ''. The user is not associated with a trusted SQL Server connect
  • 原文地址:https://www.cnblogs.com/hack-ing/p/11811338.html
Copyright © 2011-2022 走看看