플렉스 방향
플렉스 방향
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>
게시판 목록
퍼블리셔팁
질문은 상단의 QA에서 해주시기 바랍니다.
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 1007 | CSS | 8년 전 | 1827 | ||
| 1006 | CSS | 8년 전 | 2533 | ||
| 1005 | CSS | 8년 전 | 1984 | ||
| 1004 | HTML | 8년 전 | 2411 | ||
| 1003 | HTML | 8년 전 | 2844 | ||
| 1002 | HTML | 8년 전 | 3218 | ||
| 1001 | HTML | 8년 전 | 3687 | ||
| 1000 | HTML | 8년 전 | 2161 | ||
| 999 | HTML | 8년 전 | 2387 | ||
| 998 | HTML | 8년 전 | 2319 | ||
| 997 | HTML | 8년 전 | 1931 | ||
| 996 | HTML | 8년 전 | 2214 | ||
| 995 | 기타 | 8년 전 | 2082 | ||
| 994 | 기타 | 8년 전 | 2360 | ||
| 993 | 기타 | 8년 전 | 3225 | ||
| 992 | 반응형 | 8년 전 | 2749 | ||
| 991 | 반응형 | 8년 전 | 1971 | ||
| 990 | 반응형 | 8년 전 | 1943 | ||
| 989 | 반응형 | 8년 전 | 2246 | ||
| 988 | 반응형 | 8년 전 | 2408 | ||
| 987 | 반응형 | 8년 전 | 2501 | ||
| 986 | CSS | 8년 전 | 2641 | ||
| 985 | CSS | 8년 전 | 2702 | ||
| 984 | CSS | 8년 전 | 2666 | ||
| 983 | CSS | 8년 전 | 2354 | ||
| 982 | CSS | 8년 전 | 2016 | ||
| 981 | CSS | 8년 전 | 2138 | ||
| 980 | CSS | 8년 전 | 3627 | ||
| 979 | CSS | 8년 전 | 2922 | ||
| 978 | CSS | 8년 전 | 2157 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기