플렉스 방향

· 2017-09-26 (화) 22:47:11 · 1915

플렉스 방향


flex-direction속성 플렉스 콘테이너 내의가요 항목의 방향을 지정한다. 기본값은 flex-direction입니다 row(왼쪽에서 오른쪽, 위에서 아래).


다른 값은 다음과 같습니다.


1. row-reverse - 쓰기 모드 (방향)가 왼쪽에서 오른쪽 인 경우 플렉스 항목이 오른쪽에서 왼쪽으로 배치됩니다

2. column - 쓰기 시스템이 가로 인 경우 플렉스 항목이 세로로 배치됩니다.

3. column-reverse - 열과 같지만 반대입니다.


다음 예제에서는 row-reverse값 을 사용한 결과를 보여줍니다 .


.flex-container {

    display: -webkit-flex;

    display: flex;

    -webkit-flex-direction: row-reverse;

    flex-direction: row-reverse;

    width: 400px;

    height: 250px;

    background-color: lightgrey;

}




<!DOCTYPE html>

<html>

<head>

<style> 

.flex-container {

    display: -webkit-flex;

    display: flex;

    -webkit-flex-direction: row-reverse;

    flex-direction: row-reverse;

    width: 400px;

    height: 250px;

    background-color: lightgrey;

}


.flex-item {

    background-color: cornflowerblue;

    width: 100px;

    height: 100px;

    margin: 10px;

}

</style>

</head>

<body>


<div class="flex-container">

  <div class="flex-item">flex item 1</div>

  <div class="flex-item">flex item 2</div>

  <div class="flex-item">flex item 3</div>  

</div>


</body>

</html>


|
댓글을 작성하시려면 로그인이 필요합니다.

퍼블리셔팁

1,282건

퍼블리싱과 관련된 유용한 정보를 공유하세요. 질문은 상단의 QA에서 해주시기 바랍니다.

+
분류 제목 글쓴이 날짜 조회
CSS 17-10-11 조회 2,699
CSS 17-10-11 조회 2,700
HTML 17-10-07 조회 3,498
HTML 17-10-06 조회 3,354
CSS 17-09-29 조회 2,288
CSS 17-09-29 조회 2,653
CSS 17-09-29 조회 2,510
CSS 17-09-26 조회 4,045
CSS 17-09-26 조회 2,706
CSS 17-09-26 조회 1,916
CSS 17-09-22 조회 2,221
CSS 17-09-22 조회 2,388
CSS 17-09-22 조회 2,352
HTML 17-09-22 조회 4,771
CSS 17-09-21 조회 1,909
CSS 17-09-21 조회 2,039
CSS 17-09-21 조회 1,899
CSS 17-09-19 조회 1,937
CSS 17-09-19 조회 1,621
CSS 17-09-19 조회 1,482
CSS 17-09-18 조회 2,572
CSS 17-09-18 조회 2,367
CSS 17-09-18 조회 2,335
CSS 17-09-14 조회 2,397
CSS 17-09-14 조회 2,070
CSS 17-09-14 조회 2,124
CSS 17-09-11 조회 2,454
CSS 17-09-11 조회 2,303
CSS 17-09-11 조회 2,109
CSS 17-09-10 조회 1,970