교육/HTML
FLEX 기반 Layout
매일매일 여러가지 이유로 좋은 날
2020. 3. 31. 22:26
반응형
.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; }
반응형