CSS 정렬

김태희·2024년 2월 20일
0

프론트

목록 보기
8/13
post-custom-banner

3*2 모양 만들고 싶으면
부모 속성에

flex-direction: column; //세로로 정렬
justify-content: space-between; //끝으로 벌리기
align-items: center; //가운데로

3*3 모양 만들고 싶으면

display: flex;
flex-wrap: wrap;
justify-content: space-between;

수직 배치 하고 싶은데
justify 쓰려면

display: flex;
flex-direction: column;
justify-content: space-between;
profile
내 븨로그

0개의 댓글