Flexbox - Flex-方向
flex-direction属性用于指定需要放置 Flex 容器的元素(flex-items)的方向。
用法-
flex-direction: row | row-reverse | column | column-reverse
该属性接受四个值 -
row - 从左到右水平排列容器的元素。
row-reverse - 从右到左水平排列容器的元素。
column - 从左到右垂直排列容器的元素。
column-reverse - 从右到左垂直排列容器的元素。
现在,我们将通过几个例子来演示方向属性的使用。
排
将此值传递给Direction属性后,容器的元素将从左到右水平排列,如下所示。
以下示例演示了将值行传递给flex-direction属性的结果。在这里,我们使用flex-direction值row创建六个不同颜色的框。
<!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:inline-flex;
border:3px solid black;
flex-direction:row;
}
</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>
它将产生以下结果 -
行反转
将此值传递给Direction属性后,容器的元素将从右到左水平排列,如下所示。
以下示例演示了将值row-reverse传递给flex-direction属性的结果。在这里,我们使用flex-direction值row-reverse创建六个不同颜色的盒子。
<!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:inline-flex;
border:3px solid black;
flex-direction:row-reverse;
}
</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>
它将产生以下结果 -
柱子
将此值传递给Direction属性后,容器的元素会从上到下垂直排列,如下所示。
以下示例演示了将 value列传递给flex-direction属性的结果。在这里,我们使用flex-direction值列创建六个具有不同颜色的框。
<!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:inline-flex;
border:3px solid black;
flex-direction:column;
}
</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>
它将产生以下结果 -
列反转
将此值传递给Direction属性后,容器的元素将从下到上垂直排列,如下所示。
以下示例演示了将值column-reverse传递给flex-direction属性的结果。在这里,我们使用flex-direction值column-reverse创建六个不同颜色的框。
<!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:inline-flex;
border:3px solid black;
flex-direction:column-reverse;
}
</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>
它将产生以下结果 -