본문 바로가기

카테고리 없음

박스<div> 안 내용물 중앙정렬 Set4

flex-direction  세로 정렬 column  가로 정렬                    

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

flex-direction  가로 정렬 row

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