Giant Danio Fish
본문 바로가기
Layout

레이아웃 03

by 코딩왕자 2022. 7. 29.

레이아웃03

이번 레이아웃은 기본형틀에 가운데가 좌측 한칸 우측 세칸으로 나뉜 구조입니다.

float을 이용한 레이아웃

이번 레이아웃은 float으로 컨텐츠를 띄울 시 다음 내용을 빈자리가 채우러 올라오게 브라우저에서 오류가 생길수 있어서 clearfix를 선언해 버그를 해결하는 방법이다.

* {
    margin: 0;
}
body {
    background-color: #E1F5FE;
}
#wrap {
    width: 1200px;
    margin: 0 auto;
}
#header {
    height: 100px;
    background-color: #B3E5FC;
}
#nav {
    height: 100px;
    background-color: #81D4FA;
}
#main {

}
#aside {
    width: 30%;
    height: 780px;
    background-color: #4FC3F7;
    float: left;
}
#article1 {
    width: 70%;
    height: 260px;
    background-color: #29B6F6;
    float: left;
}
#article2 {
    width: 70%;
    height: 260px;
    background-color: #03A9F4;
    float: left;
}
#article3 {
    width: 70%;
    height: 260px;
    background-color: #039BE5;
    float: left;
}

#footer {
    height: 100px;
    background-color: #0288D1;
}

/* clearfix */
.clearfix:before,
.clearfix:after {
    content: '';
    display: block;
    line-height: 0;
}
.clearfix:after {
    clear: both;
}
/* 미디어 쿼리 */
@media (max-width : 1300px) {
    #wrap {
        width: 96%;
    }
    #article2 {
        width: 35%;
        height: 520px;
    }
    #article3 {
        width: 35%;
        height: 520px;
    }
}
@media (max-width : 768px) {
    #wrap {
        width: 100%;
    }
    #article1 {
        width: 70%;
        height: 390px;
    }
    #article2 {
        width: 70%;
        height: 390px;
    }
    #article3 {
        display: none;
    }

}
@media (max-width : 480px) {
    #aside {
        width: 100%;
        height: 100px;
    }
    #article1 {
        width: 100%;
        height: 430px;
    }
    #article2 {
        width: 100%;
        height: 150px;
    }

}
                

flex을 이용한 레이아웃

구역을 div태그로 정한뒤 부모태그 #wrap에 display: flex;를 사용 후에 flex-wrap: wrap;를 이용해 부모 넓이보다 요소들의 총 넓이가 크다면 나머지 요소들을 다음줄로 줄바꿔 나타내 표현하였습니다. 또한 플렉스 컨테이너 내의 아이템을 세로로 배치하기 위해서 flex-direction: column;을 사용했습니다.

* {
    margin: 0;
}
body {
    background-color: #E1F5FE;
}
#wrap {
    width: 1200px;
    margin: 0 auto;
}
#header {
    height: 100px;
    background-color: #B3E5FC;
}
#nav {
    height: 100px;
    background-color: #81D4FA;
}
#main {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    height: 780px;
}
#aside {
    width: 30%;
    height: 780px;
    background-color: #4FC3F7;

}
#article1 {
    width: 70%;
    height: 260px;
    background-color: #29B6F6;

}
#article2-1 {
    width: 100%;
    height: 260px;
    background-color: #03A9F4;
}
#article2-2 {
    width: 100%;
    height: 260px;
    background-color: #039BE5;
}
#footer {
    height: 100px;
    background-color: #0288D1;
}

/* clearfix */

/* 미디어 쿼리 */
@media (max-width : 1300px) {
    #wrap {
        width: 96%;
    }
    #article2 {
        display: flex;
    }
    #article2-1 {
        width: 50%;
        height: 520px;
    }
    #article2-2 {
        width: 50%;
        height: 520px;
    }
    
}
@media (max-width : 768px) {
    #wrap {
        width: 100%;
    }
    #article1 {
        width: 100%;
        height: 390px;
    }
    #article2-1 {
        width: 100%;
        height: 390px;
    }
    #article2-2 {
        display: none;
    }
}
@media (max-width : 480px) {
    #aside {
        width: 100%;
        height: 200px;
    }
    #article1 {
        height: 430px;
    }
    #article2-1 {
        height: 150px;
    }
}

grid을 이용한 레이아웃

구역을 div태그로 정한뒤 부모태그 #wrap에 display: grid;를 사용 후에 grid-template-areas를 이용해 구역을 잡아주고 grid-template-columns를 이용해 열의 비율을 맞추었으며 grid-template-rows로 행의 크기를 맞추어 제작했습니다. 또한 모바일 크기마다 구조가 계속 바뀌어 미디어쿼리에 크기마다 grid-template-areas를 사용해 구역을 재조정 하였습니다.

* {
    margin: 0;
}
body {
    background-color: #E1F5FE;
}
#wrap {
    width: 1200px;
    margin: 0 auto;
}
#header {
    height: 100px;
    background-color: #B3E5FC;
}
#nav {
    height: 100px;
    background-color: #81D4FA;
}
#main {
    display: grid;
    grid-template-areas: 
        "aside article1 article1"
        "aside article2 article2"
        "aside article3 article3";
    grid-template-columns: 30% 70%;
    grid-template-rows: 260px 260px 260px;
    
}
#aside {
    background-color: #4FC3F7;
    grid-area: aside;
}
#article1 {
    background-color: #29B6F6;
    grid-area: article1;
}
#article2 {
    background-color: #03A9F4;
    grid-area: article2;
}
#article3 {
    background-color: #039BE5;
    grid-area: article3;
}
#footer {
    height: 100px;
    background-color: #0288D1;
}

/* clearfix */

/* 미디어 쿼리 */
@media (max-width : 1300px) {
    #wrap {
        width: 96%;
    }
    #main {
        display: grid;
        grid-template-areas: 
            "aside article1 article1"
            "aside article2 article3"
            "aside article2 article3";
        grid-template-columns: 30% 35% 35%;
        grid-template-rows: 260px 520px;
    }
}
@media (max-width : 768px) {
    #wrap {
        width: 100%;
    }
    #main {
        display: grid;
        grid-template-areas: 
            "aside article1"
            "aside article2"
            "aside article2 article3";
        grid-template-columns: 30% 70%;
        grid-template-rows: 390px 390px;
    }
    #article3 {
        display: none;
    }
}
@media (max-width : 480px) {
    #main {
        display: grid;
        grid-template-areas: 
            "aside"
            "article1"
            "article2";
        grid-template-columns: 100%;
        grid-template-rows: 200px 430px 150px;
    }
}

결과

'Layout' 카테고리의 다른 글

레이아웃 05  (12) 2022.07.29
레이아웃 04  (11) 2022.07.29
레이아웃 02  (10) 2022.07.29
레이아웃 01  (11) 2022.07.29

댓글


광고 준비중입니다