HTML 레퍼런스 북

레이아웃02

이번 레이아웃은 전체 영역이 들어간 구조입니다. 실제 사이트에서 이런 구조를 많이 사용하며, 컨테이너를 만들어서 가운데 영역을 설정합니다.

float를 이용한 레이아웃

div태그는 block특성을 가지고 있기 때문에 세로 배치. 가로로 정렬시켜주는 것 float: left;입니다.
하단의 보이지 않는 요소에 clear: both; 주게 되면 요소가 다시 보이게 됩니다.
구조가 복잡해지면 overflow: hidden; 으로 주는 것이 좋으며 그보다도 clearfix를 주는 것이 좋습니다.

* {
    margin: 0;
    padding: 0;
}
body {
    background-color: #E8F5E9;
}
#wrap {
    width: 1200px;
    margin: 0 auto;
}
#header {
    width: 100%;
    height: 100px;
    background-color: #C8E6C9;
}
#nav {
    width: 100%;
    height: 100px;
    background-color: #A5D6A7;
}
#main {
    width: 100%;
    overflow: hidden;
}
#aside {
    width: 30%;
    height: 780px;
    background-color: #81C784;
    float: left;
}
#section {
    width: 40%;
    height: 780px;
    background-color: #66BB6A;
    float: left;
}
#article {
    width: 30%;
    height: 780px;
    background-color: #4CAF50;
    float: left;
}
#footer {
    width: 100%;
    height: 100px;
    background-color: #43A047;
    clear: both;
}
@media (max-width: 1300px) {
    #wrap {
        width: 96%;
    }
}
@media (max-width: 768px) {
    #wrap {
        width: 100%;
    }
    #aside {
        width: 30%;
        height: 630px;
    }
    #section {
        width: 70%;
        height: 630px;
    }
    #article {
        width: 100%;
        height: 150px;
    }
}
@media (max-width: 480px) {
    #aside {
        width: 100%;
        height: 200px;
    }
    #section {
        width: 100%;
        height: 430px;
    }
}

결과

See the Pen layout02-float by kimyihyung (@kimyihyung) on CodePen.

flex를 이용한 레이아웃

각각의 자식 요소에 적용하는 것이 아니라 부모 요소에만 적용하면 된다.
display: flex; 아이템들을 더 이상 한 줄에 담을 여유 공간이 없을 때 아이템 줄바꿈을 결정 : (flex-wrap flex-wrap: wrap;)
방향 설정은 flex-direction으로 배치되는 축의 방향을 결정하는 속성.
row : 기본값으로, 아이템들이 가로(행) 방향으로 배치
row-reverse : 아이템들이 역순으로 가로 배치
column : 아이템들이 세로(열) 방향으로 배치
column-reverse : 아이템들이 역순으로 세로 배치

* {
    margin: 0;
    padding: 0;
}
body {
    background-color: #E8F5E9;
}
#wrap {
    width: 1200px;
    margin: 0 auto;
}
#header {
    height: 100px;
    background-color: #C8E6C9;
}
#nav {
    height: 100px;
    background-color: #A5D6A7;
}
#main {
    display: flex;
}
#aside {
    width: 30%;
    height: 780px;
    background-color: #81C784;
}
#section {
    width: 40%;
    height: 780px;
    background-color: #66BB6A;
}
#article {
    width: 30%;
    height: 780px;
    background-color: #4CAF50;
}
#footer {
    height: 100px;
    background-color: #43A047;
}
@media (max-width: 1300px) {
    #wrap {
        width: 96%;
    }
}
@media (max-width: 768px) {
    #wrap {
        width: 100%;
    }
    #main {
    flex-wrap: wrap;
}
    #aside {
    width: 30%;
    height: 630px;
}
    #section {
    width: 70%;
    height: 630px;
}
    #article {
    width: 100%;
    height: 150px;
}
}
@media (max-width: 480px) {
    #aside {
    width: 100%;
    height: 200px;
}
    #section {
    width: 100%;
    height: 430px;
}
}

결과

See the Pen layout02-flex by kimyihyung (@kimyihyung) on CodePen.

grid를 이용한 레이아웃

display: grid; table처럼 행과 열 나누며 area를 정해주면 됩니다.
grid-template-rows : 명시적 행의 크기
grid-template-cloumns : 명시적 열의 크기
grid-template-areas : 영역 테이블 생성

* {
    margin: 0;
    padding: 0;
}
body {
    background-color: #E8F5E9;
}
#wrap {
    width: 1200px;
    margin: 0 auto;
}
#header {
    height: 100px;
    background-color: #C8E6C9;
}
#nav {
    height: 100px;
    background-color: #A5D6A7;
}
#main {
    display: grid;
    grid-template-columns: 30% 40% 30%;
    grid-template-rows: 780px;
}
#aside {
    background-color: #81C784;
}
#section {
    background-color: #66BB6A;
}
#article {
    background-color: #4CAF50;
}
#footer {
    height: 100px;
    background-color: #43A047;
}
@media (max-width: 1300px) {
    #wrap {
        width: 96%;
    }
}
@media (max-width: 768px) {
    #wrap {
        width: 100%;
    }
    #main {
        grid-template-areas: 
            "aside section"
            "article article"
        ;
        grid-template-columns: 30% 70%;
        grid-template-rows: 680px 150px;
    }
    #aside {
        grid-area: aside;
    }
    #section {
        grid-area: section;
    }
    #article {
        grid-area: article;
    }
}
@media (max-width: 480px) {
    #main {
        grid-template-areas: 
            "aside" 
            "section"
            "article"
        ;
        grid-template-columns: 100%;
        grid-template-rows: 200px 430px 150px;
    }
}

결과

See the Pen layout02-grid by kimyihyung (@kimyihyung) on CodePen.