HTML 레퍼런스 북
레이아웃 03
전체 영역이 들어간 구조이며 실제 사이트에서 이런 구조를 많이 사용하고 컨테이너를 만들어 가운데 영역을 설정한다.
Float을 이용한 레이아웃
레이아웃의 틀을 잡을 때 <div> 태그가 사용되며 해당 태그는
Block 형식이므로 가로로 나란히 정렬이 불가능하다.
이때 나란히 정렬해주고자 하는 요소의 CSS 속성에 float: left;를
적어주면 나란히 정렬이 가능하다.
단, 이 속성을 쓰게 될 경우, 속성을 썼던 아래의 요소가 보이지 않게
되는 버그가 발생하는데 이럴 때에는 보이지 않는 해당 요소에 clear: both;를
적어놓으면 해결된다.
또한 clear: both; 대신 맨 아래의 clearfix 부분을 적어놓는 방법도 있다.
* {
margin: 0;
padding: 0;
}
body {
background-color: #E1F5FE;
}
#wrap {
width: 1200px;
margin: 0 auto;
}
#header {
width: 1200px;
height: 100px;
background-color: #B3E5FC;
}
#nav {
width: 1200px;
height: 100px;
background-color: #81D4FA;
}
#main {
width: 1200px;
}
#aside {
width: 300px;
height: 780px;
background-color: #4FC3F7;
float: left;
}
#article1 {
width: 900px;
height: 260px;
background-color: #29B6F6;
float: left;
}
#article2 {
width: 900px;
height: 260px;
background-color: #03A9F4;
float: left;
}
#article3 {
width: 900px;
height: 260px;
background-color: #039BE5;
float: left;
}
#footer {
width: 1200px;
height: 100px;
background-color: #0288D1;
/* clear: both; */
}
/* clearfix */
.clearfix::before,
.clearfix::after {
content: '';
display: block;
line-height: 0;
}
.clearfix::after {
clear: both;
}
결과
Float을 이용한 레이아웃 - 반응형
wrap 속성의 width만을 1200px로 고정시킨 후 나머지 속성의 width 값은
퍼센테이지로 환산시킨다.
미디어 쿼리에서 노트북 전용(max-width: 1300px), 태블릿 PC 전용(768px),
스마트폰 전용(480px) 사이즈를 만든다.
* {
margin: 0;
padding: 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;
/* clear: both; */
}
/* 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를 이용한 레이아웃
가로로 정렬해주고자 하는 요소들이 담긴 부모 요소 #main에 display: flex;를 적어줍니다.
* {
margin: 0;
padding: 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 {
width: 70%;
height: 260px;
background-color: #03A9F4;
}
#article3 {
width: 70%;
height: 260px;
background-color: #039BE5;
}
#footer {
height: 100px;
background-color: #0288D1;
}
결과
Flex를 이용한 레이아웃 - 반응형
* {
margin: 0;
padding: 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;
}
/* 미디어 쿼리 */
@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를 이용한 레이아웃
table처럼 레이아웃을 잡을 수 있는 방법 중 하나입니다.
display: grid;로 Grid 사용을 활성화하며, grid-template-columns에서는 요소 배치 가로 길이를,
grid-template-rows에서는 세로 길이를 지정해줍니다.
* {
margin: 0;
padding: 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: 300px 900px;
grid-template-rows: 260px 260px 260px;
}
#aside {
background-color: #4FC3F7;
grid-area: aside;
}
#article1 {
grid-area: article1;
background-color: #29B6F6;
}
#article2 {
grid-area: article2;
background-color: #03A9F4;
}
#article3 {
grid-area: article3;
background-color: #039BE5;
}
#footer {
height: 100px;
background-color: #0288D1;
}
결과
Grid를 이용한 레이아웃 - 반응형
* {
margin: 0;
padding: 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: 300px 900px;
grid-template-rows: 260px 260px 260px;
}
#aside {
background-color: #4FC3F7;
grid-area: aside;
}
#article1 {
grid-area: article1;
background-color: #29B6F6;
}
#article2 {
grid-area: article2;
background-color: #03A9F4;
}
#article3 {
grid-area: article3;
background-color: #039BE5;
}
#footer {
height: 100px;
background-color: #0288D1;
}
/* 미디어 쿼리 */
@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";
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;
}
}