Publishing

display flex 3 justify-content

태인킴 2020. 5. 7. 21:51
반응형


 

1. 주축을 기준으로 item을 정렬 하는 방법

display : flex 인 Container는 item들정렬은 어떻게 할까요?

justify-content 속성을 이용해서 정렬 할 수 있습니다.

justify-content주축을 기준으로 item들을 정렬 합니다.

여기서 주축'flex-direction: 값'을 의미 합니다.

.container{
	display: flex;
    flex-direction: row; //기본값
    justify-content: flex-start;
}

 

flex-start : 시작점 부터 정렬

flex-end : 끝점 부터 정렬

center : 가운데 정렬

space-between : 첫번째 item시작점에, 마지막 item끝점에, 나머지 item골고루 정렬

space-around : item들 사이의 모두 동일한 여백으로 정렬

 

 

 

주축의 반대가 되는 축은 교차축 입니다. 교차축을 기준으로 item을 정렬 하고 싶다면 아래를 읽어주세요.

 

display flex5, align-items align-content , 아이템 정렬 방법

display : flex 에서 교차축을 기준으로 item을 어떻게 정렬 할까요? ​ 1. align-items align-items 속성은 교차축을 기준으로 item 을 정렬 하는 방법 입니다. 교차축은 'flex-direction : 값' 의 값의 반대 가..

coding-food-court.tistory.com

 

반응형

'Publishing' 카테고리의 다른 글

img 태그 가로 세로 비율 유지  (0) 2020.05.09
display flex 4 flex-grow flex-shrink  (0) 2020.05.08
display flex2 flex-wrap  (0) 2020.05.07
display flex  (0) 2020.05.06
favicon 설정  (0) 2020.05.06