본문 바로가기
교육/HTML

FLEX 기반 Layout

by 매일매일 여러가지 이유로 좋은 날 2020. 3. 31.
반응형

.wrap {

background-color:slategray;

height:500px;

display: flex;

flex-direction: row;

justify-content: center;

align-items: center; }

 

.wrap > div {

width:200px;

height:200px;

background-color:skyblue;

color:white; }

반응형

댓글