Flexbox教程

Flexbox Flex 容器

要在您的应用程序中使用 Flexbox,您需要使用 display 属性创建/定义一个 Flex 容器。
用法-
display: flex | inline-flex
该属性接受两个值
flex-生成块级 flex 容器。 inline-flex-生成内联 flex 容器框。
现在,我们将通过示例了解如何使用 display 属性。

弹性

将此值传递给 display 属性时,将创建一个块级 flex 容器。它占据了父容器(浏览器)的整个宽度。
以下示例演示了如何创建块级弹性容器。在这里,我们创建了六个不同颜色的盒子,并使用了 flex 容器来容纳它们。
<!doctype html>
<html lang = "en">
   <style>
      .box1{background:green;}
      .box2{background:blue;}
      .box3{background:red;}
      .box4{background:magenta;}
      .box5{background:yellow;}
      .box6{background:pink;}
      
      .container{
         display:flex;
      }
      .box{
         font-size:35px;
         padding:15px;
      }
   </style>
   
   <body>
      <div class = "container">
         <div class = "box box1">One</div>
         <div class = "box box2">two</div>
         <div class = "box box3">three</div>
         <div class = "box box4">four</div>
         <div class = "box box5">five</div>
         <div class = "box box6">six</div>
      </div>
   </body>
</html>
由于我们已将 flex 值赋予 display 属性,因此容器使用容器(浏览器)的宽度。
您可以通过向容器添加边框来观察这一点,如下所示。
.container {
   display:inline-flex;
   border:3px solid black;
}

内联 flex

将此值传递给 display 属性后,将创建一个内联级别的 flex 容器。它只是占据了内容所需的位置。
以下示例演示了如何创建内联 flex 容器。在这里,我们创建了六个不同颜色的盒子,并使用了 inline-flex 容器来容纳它们。
<!doctype html>
<html lang = "en">
   <style>
      .box1{background:green;}
      .box2{background:blue;}
      .box3{background:red;}
      .box4{background:magenta;}
      .box5{background:yellow;}
      .box6{background:pink;}
      
      .container{
         display:inline-flex;
         border:3px solid black;
      }
      .box{
         font-size:35px;
         padding:15px;
      }
   </style>
   
   <body>
      <div class = "container">
         <div class = "box box1">One</div>
         <div class = "box box2">two</div>
         <div class = "box box3">three</div>
         <div class = "box box4">four</div>
         <div class = "box box5">five</div>
         <div class = "box box6">six</div>
      </div>
   </body>
</html>
由于我们使用了内联 flex 容器,因此它只占用了包装其元素所需的空间。
昵称: 邮箱:
Copyright © 2022 立地货 All Rights Reserved.
备案号:京ICP备14037608号-4