- [CSS] 7. 주축 방향 정렬 Justify-content2024년 07월 02일
- Song hyun
- 작성자
- 2024.07.02.:24
728x90반응형[CSS] 7. 주축 방향 정렬 Justify-content
1. Justify-content 속성이란?
이는 Flex 컨테이너 내에서 주 축(main axis)을 따라 아이템들을 정렬하는 방향을 정의한다.
(1) flex-start
(2) flex-end
(3) center
(4) space-between
(5) space-around
(6) space-evenly
2. 시나리오 코드
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Insert title here</title> <style type="text/css"> .container{ display:flex; border:2px solid #333; margin-bottom:20px; padding:10px; flex-dirextion:row; } .item{ background-color:#007bff; color:white; padding:20px; margin:10px; text-align:center; border-radius:5px; width:150px; } </style> </head> <body> <h2>justify-content: flex-start(기본값)</h2> <div class="container" style="justify-content: flex-start;"> <div class="item">아이템1</div> <div class="item">아이템2</div> <div class="item">아이템3</div> </div> <h2>justify-content: flex-end</h2> <div class="container" style="justify-content: flex-end;"> <div class="item">아이템1</div> <div class="item">아이템2</div> <div class="item">아이템3</div> </div> <h2>justify-content: flex-center</h2> <div class="container" style="justify-content: center;"> <div class="item">아이템1</div> <div class="item">아이템2</div> <div class="item">아이템3</div> </div> <h2>justify-content: space-between</h2> <div class="container" style="justify-content: space-between;"> <div class="item">아이템1</div> <div class="item">아이템2</div> <div class="item">아이템3</div> </div> <h2>justify-content: space-around</h2> <div class="container" style="justify-content: space-around;"> <div class="item">아이템1</div> <div class="item">아이템2</div> <div class="item">아이템3</div> </div> <h2>justify-content: space-evenly</h2> <div class="container" style="justify-content: space-evenly;"> <div class="item">아이템1</div> <div class="item">아이템2</div> <div class="item">아이템3</div> </div> </body> </html>
728x90반응형'HTML,CSS, JS > CSS' 카테고리의 다른 글
[CSS] 시험 (0) 2024.07.02 [CSS] 8. 교차축 정렬 (0) 2024.07.02 [CSS] 6. flex-wrap (0) 2024.07.02 [CSS] 5. Flex-direction 속성 (0) 2024.07.01 [CSS] 4. Flexbox (0) 2024.07.01 다음글이전글이전 글이 없습니다.댓글
스킨 업데이트 안내
현재 이용하고 계신 스킨의 버전보다 더 높은 최신 버전이 감지 되었습니다. 최신버전 스킨 파일을 다운로드 받을 수 있는 페이지로 이동하시겠습니까?
("아니오" 를 선택할 시 30일 동안 최신 버전이 감지되어도 모달 창이 표시되지 않습니다.)