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 属性。
弹性启动
将此值传递给属性justify-content时,弹性项目将放置在容器的开头。
以下示例演示了将值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>
它将产生以下结果 -
柔性端
将此值传递给属性justify-content时,弹性项目将放置在容器的末尾。
以下示例演示了将值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>
它将产生以下结果 -
中心
将此值传递给属性justify-content时,弹性项目将放置在容器的中心,其中额外的空间均匀分布在弹性项目的开头和结尾。
以下示例演示了将值中心传递给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>
它将产生以下结果 -
之间的空间
将此值传递给属性justify-content时,额外的空间在 Flex 项目之间平均分配,使得任何两个 Flex 项目之间的空间相同,并且 Flex 项目的开头和结尾接触容器的边缘。
以下示例演示了将值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>
它将产生以下结果 -
周围空间
将此值传递给属性justify-content时,额外的空间将在弹性项目之间平均分配,以便任何两个弹性项目之间的空间相同。但是,容器边缘与其内容(弹性项目的开始和结束)之间的空间是弹性项目之间的空间的一半。
以下示例演示了将值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>
它将产生以下结果 -
空间均匀
将此值传递给属性justify-content时,额外的空间将在弹性项目之间平均分配,以便任何两个弹性项目之间的空间相同(包括到边缘的空间)。
以下示例演示了将值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>
它将产生以下结果 -