Flexbox - 内容对齐



通常情况下,你可能会注意到在排列弹性项目后,容器中会留下额外的空间,如下所示。

使用属性justify-content,你可以通过分配额外的空间来沿主轴对齐内容。如果弹性项目超出行,你也可以调整其对齐方式。

用法

justify-content: flex-start | flex-end | center | space-between | space-around| space-evenly;

此属性接受以下值 −

  • flex-start − 弹性项目放置在容器的起始位置。

  • flex-end − 弹性项目放置在容器的结束位置。

  • center − 弹性项目放置在容器的中心位置,额外的空间在弹性项目的起始和结束位置平均分配。

  • space-between − 额外的空间在弹性项目之间平均分配。

  • space-around − 额外的空间在弹性项目之间平均分配,容器边缘与其内容之间的空间是弹性项目之间空间的一半。

现在,我们将通过示例了解如何使用 justify-content 属性。

flex-start

将此值传递给justify-content属性时,弹性项目将放置在容器的起始位置。

Justify Flex Start

以下示例演示了将flex-start值传递给justify-content属性的结果。

<!doctype html>
<html lang = "en">
   <style>
      .box1{background:green;}
      .box2{background:blue;}
      .box3{background:red;}
      .box4{background:magenta;}
      .box5{background:yellow;}
      .box6{background:pink;}
      
      .box{
         font-size:35px;
         padding:15px;
      }
      .container{
         display:flex;
         border:3px solid black;
         justify-content:flex-start;
      }
   </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-end

将此值传递给justify-content属性时,弹性项目将放置在容器的结束位置。

Justify Flex End

以下示例演示了将flex-end值传递给justify-content属性的结果。

<!doctype html>
<html lang = "en">
   <style>
      .box1{background:green;}
      .box2{background:blue;}
      .box3{background:red;}
      .box4{background:magenta;}
      .box5{background:yellow;}
      .box6{background:pink;}
      
      .box{
         font-size:35px;
         padding:15px;
      }
      .container{
         display:flex;
         border:3px solid black;
         justify-content:flex-end;
      }
   </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>

将产生以下结果 −

center

将此值传递给justify-content属性时,弹性项目将放置在容器的中心位置,额外的空间在弹性项目的起始和结束位置平均分配。

Justify Flex Center

以下示例演示了将center值传递给justify-content属性的结果。

<!doctype html>
<html lang = "en">
   <style>
      .box1{background:green;}
      .box2{background:blue;}
      .box3{background:red;}
      .box4{background:magenta;}
      .box5{background:yellow;}
      .box6{background:pink;}
      
      .box{
         font-size:35px;
         padding:15px;
      }
      .container{
         display:flex;
         border:3px solid black;
         justify-content:center;
      }
   </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>

将产生以下结果 −

space-between

将此值传递给justify-content属性时,额外的空间在弹性项目之间平均分配,使得任何两个弹性项目之间的空间相同,并且弹性项目的起始和结束位置与容器的边缘相接。

Justify Flex Space Between

以下示例演示了将space-between值传递给justify-content属性的结果。

<!doctype html>
<html lang = "en">
   <style>
      .box1{background:green;}
      .box2{background:blue;}
      .box3{background:red;}
      .box4{background:magenta;}
      .box5{background:yellow;}
      .box6{background:pink;}
      
      .box{
         font-size:35px;
         padding:15px;
      }
      .container{
         display:flex;
         border:3px solid black;
         justify-content:space-between;
      }
   </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>

将产生以下结果 −

space-around

将此值传递给justify-content属性时,额外的空间在弹性项目之间平均分配,使得任何两个弹性项目之间的空间相同。但是,容器边缘与其内容(弹性项目的起始和结束位置)之间的空间是弹性项目之间空间的一半。

Justify Flex Space Around

以下示例演示了将space-around值传递给justify-content属性的结果。

<!doctype html>
<html lang = "en">
   <style>
      .box1{background:green;}
      .box2{background:blue;}
      .box3{background:red;}
      .box4{background:magenta;}
      .box5{background:yellow;}
      .box6{background:pink;}
      
      .box{
         font-size:35px;
         padding:15px;
      }
      .container{
         display:flex;
         border:3px solid black;
         justify-content:space-around;
      }
   </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>

将产生以下结果 −

space-evenly

将此值传递给justify-content属性时,额外的空间在弹性项目之间平均分配,使得任何两个弹性项目之间的空间都相同(包括到边缘的空间)。

Justify Flex Space Evenly

以下示例演示了将space-evenly值传递给justify-content属性的结果。

<!doctype html>
<html lang = "en">
   <style>
      .box1{background:green;}
      .box2{background:blue;}
      .box3{background:red;}
      .box4{background:magenta;}
      .box5{background:yellow;}
      .box6{background:pink;}
      
      .box{
         font-size:35px;
         padding:15px;
      }
      .container{
         display:flex;
         border:3px solid black;
         justify-content:space-evenly;
      }
   </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>

将产生以下结果 −

广告