[CSS] justify-content 속성
justify-content CSS의 justify-content 속성은 브라우저가 flex container의 main 축과 grid container의 inline 축에 따라 요소 간의 간격과 주변 공간을 분배하는 방법을 정의한다. Try it justify-content: start; justify-content: center; justify-content: space-between; justify-content: space-around; justify-content: space-evenly; Syntax /* Positional alignment */ justify-content: center; /* center 주위로 item들을 묶는다 */ justify-content: start; /* s..