美文网首页
bootstrap的container容器和container-

bootstrap的container容器和container-

作者: houxnan | 来源:发表于2019-11-08 08:52 被阅读0次

说到bootstrap的container容器和container-fluid容器的区别,我们可以通过一个实验来说明:

代码如下:

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <meta http-equiv="X-UA-Compatible" content="ie=edge">

    <title>bootstrap练习</title>

    <link rel="stylesheet" href="../css/bootstrap.min.css">

</head>

<body>

    <div class="container-fluid">

      <h1>hello world</h1>

    </div>

  <script src="../js/jquery.min.js"></script>

    <script src="../js/bootstrap.min.js"></script>

</body>

</html>

当容器的类为container-fluid的时候,视图如下:无论页面宽度多少时,视图中总是只有一个固定padding值存在

同样的一段代码,将  <div class="container-fluid">换成  <div class="container">时,得到的视图如下:视图中多了一个margin值,并且当页面变大时,margin值变大,页面变小时,margin值变小,甚至消失。

总结:
container 类和container-fluid类的区别体现在是否有随视口宽度改变的margin存在。

container类所谓的自适应也是通过margin的改变来完成,container-fluid类的百分百宽度是指在固有的15px的padding前提下宽度总是当前视口的宽度。

相关文章

  • bootstrap的container容器和container-

    说到bootstrap的container容器和container-fluid容器的区别,我们可以通过一个实验来说...

  • container容器

    布局容器 Bootstrap需要为页面内容和栅格系统包裹一个.container容器,Bootstrap提供了两个...

  • Bootstrap - 栅格系统布局

    结构必须是:container->row->col容器->行->列。必须是列为基本元素。 代码: 行(row)必须...

  • 2018-09-29

    bootstrap 容器 container-fluid 流体 container 1170 970 750 10...

  • BootStrap栅格系统

    容器(Container) Container容器时窗口布局的最基本元素,BootStrap推荐所有样式都定义在c...

  • Bootstrap初学

    为什么前端不用Bootstrap 1.Bootstrap 引入 2.网格/栅栏系统 布局容器 .container...

  • VUE学习笔记011 el:关联的容器必须的根容器/boots

    vue 关联的容器必须的根容器 el:#div1 bootstrap指定的class="container" 也必...

  • bootstrap栅格系统总结

    .container与.container_fluid是bootstrap中的两种不同类型的外层容器,按照官方的说...

  • bootstrap 核心概念

    布局容器 Bootstrap 需要为页面内容和栅格系统包裹一个 .container 容器。我们提供了两个作此用处...

  • Bootstrap栅格布局

    布局系统 Bootstrap提供了.cintainer和.container-fluid两种容器布局 这两种样式是...

网友评论

      本文标题:bootstrap的container容器和container-

      本文链接:https://www.haomeiwen.com/subject/wrfibctx.html