[CSS] 가운데 정렬하기

박서현·2023년 8월 3일
0
post-thumbnail

수평 가운데 정렬

display: flex;
flex-direction: column;
justify-content: center;
align-items: center;

수직 가운데 정렬

display: flex;
flex-direction: row;
justify-content: center;
align-items: center;

0개의 댓글