Skip to content

Latest commit

 

History

History
84 lines (61 loc) · 1.87 KB

flex-direction.md

File metadata and controls

84 lines (61 loc) · 1.87 KB

flex-direction

작성자 : 김동일

작성일 : 2015-10-30

css 레퍼런스 설명:

  • flex-direction : div 영역 내 flex item 의 방향을 설정한다.

  • syntax :

flex-direction: row|row-reverse|column|column-reverse|initial|inherit;

row:기본 값, 영역 내 flex item들이 정방향 가로로 구분한다.

row-reverse : 영역 내 flex item들이 역방향 가로로 구분한다.

column : 영역 내 flex item들이 정방향 세로로 구분한다.

column-reverse : 영역 내 flex item들이 역방향 세로로 구분한다.

initial:기본 값으로 set되어 있는 값을 불러온다.

inherit:부모 element에 설정되어 있는 값을 상속 받는다.

sample code :

<!DOCTYPE html>
<html>
<head>
<style>
#main {
    width: 400px;
    height: 400px;
    border: 1px solid #c3c3c3;
    display: -webkit-flex; /* Safari */
    -webkit-flex-direction: row-reverse; /* Safari 6.1+ */
    display: flex;
    flex-direction: column-reverse;
}

#main div {
    width: 50px;
    height: 50px;
}

</style>
</head>
<body>

<div id="main">
  <div style="background-color:coral;">A</div>
  <div style="background-color:lightblue;">B</div>
  <div style="background-color:khaki;">C</div>
  <div style="background-color:pink;">D</div>
  <div style="background-color:lightgrey;">E</div>
  <div style="background-color:lightgreen;">F</div>
</div>

<p><b>Note:</b> Internet Explorer 10 and earlier versions do not support the flex-direction property.</p>

<p><b>Note:</b> Safari 6.1 (and newer) supports an alternative, the -webkit-flex-direction property.</p>

</body>
</html>

결과

flex-direction