<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/direction.css">
<title>Document</title>
</head>
<div class="container">
<div class="item">1</div>
<div class="item">2</div>
<div class="item">3</div>
<div class="item">4</div>
<div class="item">5</div>
</div>
<body>
</body>
</html>
.container{
height: 500px;
border:5px dashed orange;
display: flex;
/* row일 경우 item 1,2,3,4,5*/
/* row-reverse일 경우 왼쪽에서
오른쪽으로 바뀌고 item 5,4,3,2,1 */
/* flex-direction: row-reverse; */
/* column-reverse일 경우 아래에서 위로
item 5,4,3,2,1 */
/* column일 경우 아래에서 위에서 아래로
item 1,2,3,4,5 */
flex-direction: column;
}
.item{
width:50px;
height: 50px;
margin: 5px;
background-color: paleturquoise;
border:3px solid blue;
font-size: 30px;
}
row는 기본값이면 방향은 왼쪽에서 오른쪽 으로 row-reverse일 경우 방향이 오른쪽에서 왼쪽으로 item의 위치가 왼쪽에서 오른쪽으로 바뀌고 column은 위에서 아래로 column-reverse일 경우 아래에서 위로 향하며 item의 위치가 위가 아닌 아래로 내려간다.
.container{
height: 500px;
border:5px dashed orange;
display: flex;
flex-wrap: wrap;
}
.item{
width:50px;
height: 50px;
margin: 5px;
background-color: paleturquoise;
border:3px solid blue;
font-size: 30px;
}
.container{
height: 500px;
border:5px dashed orange;
display: flex;
/* flex-wrap: wrap;
flex-direction: column; */
flex-flow: column wrap;
}
.item{
width:50px;
height: 50px;
margin: 5px;
background-color: paleturquoise;
border:3px solid blue;
font-size: 30px;
}