본문 바로가기
CSS

div 구조잡기_가운데 정렬

by 율✌️ 2022. 5. 19.

1. 구역확인

2. 구조잡기

<div class="box">
    <div class="map"></div>
    <div class="story"></div>
</div>

 

3. 세밀하게 조정

.box {
    width: 1000px;            

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

    margin: 40px auto 0px auto;
}

.map {
    width: 500px;
    height: 500px;

    background-color: red;

    margin-right: 30px;
}

.story {
    width: 450px;
    height: 500px;

    background-color: blue;
}

 

 

▶위아래로 가운데 정렬

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

 

 

가로로 가운데 정렬

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

'CSS' 카테고리의 다른 글

글자/박스에 그림자 넣기  (0) 2022.05.26
두개의 div 한줄에 넣기  (0) 2022.05.26
모바일 CSS 사용코드  (0) 2022.05.19
div 태그로 img넣기_ background-image  (0) 2022.05.19
버튼_테두리+hover+밑줄없애기  (0) 2022.05.19