๋ ์ด์์05
์ ์ฒด ์์ญ์ด ๋ค์ด๊ฐ ๊ตฌ์กฐ๋ก ์ธ๋ถ์ ์ธ ์์๋ค์ ๋ถ๋ชจ์ปจํ
์ด๋๋ฅผ ๋ง๋ค์ด์ ๊ฐ์ด๋ฐ ์์ญ์ผ๋ก ๋ ์ด์์์ ์ค์ ํ๋ค.
์ด๋ฒ ๋ ์ด์์์ ์ข ๋ ์ฌํ๊ณผ์ ์ผ๋ก ๋ค์ด๊ฐ๋ค.
float์ ์ด์ฉํ ๋ฐ์ํ ๋ ์ด์์
CSS ์คํ์ผ์ ํจ์จ์ ์ผ๋ก ์ฃผ๊ธฐ ์ํด์๋ html ๋งํฌ์ ์ ๊น๋ํ๊ฒ ์ ์ธํ ์ค ์์์ผ ํ๋ค. ๋๋ฌธ์ ๋จผ์ ๋ ์ด์์ ๋ถ์ ๋ฐ ์์์ ์ด๋ฆ์ ์ ์ ์ธํ๋ ๊ฒ์ด ์ค์ํ๋ค.
clearfix๋ฅผ ์ด์ฉํ float์ ์์ญ๊นจ์ง ๋ฐฉ์ง
1. ๊นจ์ง๋ ์์ญ์ clear:both๋ฅผ ์ค์ ํ๋ค.
2. ๋ถ๋ชจ ๋ฐ์ค ์์ญ์ overflowf: hidden์ ์ค์ ํ๋ค. - ์ ๋๋ฉ์ด์
ํจ๊ณผ๊ฐ ์ ์ฉ๋์ง ์๋๋ค.
3. clearfix๋ฅผ ์ค์ ํ๋ค. - ๊นจ์ง ๋ ์ด์์ ์์์ ๋ถ๋ชจ์์์๊ฒ ํด๋์ค๋ก ์ด๋ฆ์ ์ ์ธํด์ค๋ค.
div class="container clearfix"
* {
margin: 0;
padding: 0;
}
#wrap {}
#header {
width: 100%;
height: 100px;
background-color: #EEEBE9;
}
#header .container {
height: 100px;
background-color: #D7CCC8;
}
#nav {
width: 100%;
height: 100px;
background-color: #A1887F;
}
#nav .container {
height: 100px;
}
#main {
width: 100%;
height: 780px;
background-color: #886F65;
}
#footer {
width: 100%;
height: 100px;
background-color: #4E342E;
}
.container {
width: 1200px;
height: inherit;
margin: 0 auto;
background-color: rgba(0, 0, 0, 0.08);
}
.contents .cont1 {
width: 100%;
height: 100px;
background-color: #74574A;
}
.contents .cont2 {
width: 100%;
height: 200px;
background-color: #684D43;
}
.contents .cont3 {
width: 50%;
height: 480px;
background-color: #594139;
float: left;
}
.contents .cont4 {
width: 50%;
height: 480px;
background-color: #4A352F;
float: left;
}
/* clearfix */
.clearfix::before {
zoom: 1;
}
.clearfix::before .clearfix::after {
content: '';
display: block;
line-height: 0;
}
.clearfix::after {
clear: both;
}
@media (max-width: 1220px) {
.container {
width: 96%;
}
.contents .cont1 {
width: 30%;
height: 780px;
float: left;
}
.contents .cont2 {
width: 70%;
height: 390px;
float: left;
}
.contents .cont3 {
width: 35%;
height: 390px;
}
.contents .cont4 {
width: 35%;
height: 390px;
}
}
@media (max-width: 768px) {
.container {
width: 100%;
}
.contents .cont1 {
width: 30%;
height: 780px
}
.contents .cont2 {
width: 70%;
height: 260px;
}
.contents .cont3 {
width: 70%;
height: 260px;
}
.contents .cont4 {
width: 70%;
height: 260px;
}
}
@media (max-width: 480px) {
.contents .cont1 {
width: 100%;
height: 150px;
}
.contents .cont2 {
width: 100%;
height: 210px;
}
.contents .cont3 {
width: 100%;
height: 210px;
}
.contents .cont4 {
width: 100%;
height: 210px;
}
}
flex๋ฅผ ์ด์ฉํ ๋ฐ์ํ ๋ ์ด์์
๊ฐ ์์์๊ฒ ๋ช ์นญ๊ณผ ์ ํ์๋ฅผ ์ ์ ์ธํด์ฃผ๋ ๊ฒ์ด ์ค์ํ๋ค. ํนํ ์๋ฉํฑ ๋งํฌ์ ์ ๋ํ ์ค์์ฑ์ ๋์น๋ฉด ์๋๋ฉฐ ์๋ฏธ์๋ ๋งํฌ์ ์ ํ ์ค ์์์ผ ํ๋ค.
* {
margin: 0;
padding: 0;
}
#wrap {}
#header {
height: 100px;
background-color: #EEEBE9;
}
#nav {
height: 100px;
background-color: #B9AAA5;
}
#main {
height: 780px;
background-color: #886F65;
}
#footer {
height: 100px;
background-color: #4E342E;
}
/* ์ปจํ
์ด๋ */
.container {
width: 1200px;
height: inherit;
background-color: rgba(0, 0, 0, 0.3);
margin: 0 auto;
}
/* ๋ฉ์ธ๋ฐ์ค ๊ตฌ์กฐ */
.contents {}
.contents .left {}
.contents .left .cont1 {
width: 100%;
height: 100px;
background-color: #74574A;
}
/* contents ๊ตฌ์กฐ flex ์ค์ */
.contents .right {
display: flex;
flex-wrap: wrap;
}
.contents .right .cont2 {
width: 100%;
height: 200px;
background-color: #684D43;
}
.contents .right .cont3 {
width: 50%;
height: 480px;
background-color: #594139;
}
.contents .right .cont4 {
width: 50%;
height: 480px;
background-color: #4A352F;
}
/* ๋ฏธ๋์ด์ฟผ๋ฆฌ ์ค์ */
@media (max-width: 1220px) {
.container {
width: 96%;
}
.contents {
display: flex;
flex-wrap: wrap;
}
.contents .left {
width: 30%;
}
.contents .left .cont1 {
width: 100%;
height: 780px;
}
.contents .right {
width: 70%;
}
.contents .right .cont2 {
width: 100%;
height: 390px;
}
.contents .right .cont3 {
width: 50%;
height: 390px;
}
.contents .right .cont4 {
width: 50%;
height: 390px;
}
}
@media (max-width: 768px) {
.container {
width: 100%;
}
.contents .right .cont2 {
width: 100%;
height: 260px;
}
.contents .right .cont3 {
width: 100%;
height: 260px;
}
.contents .right .cont4 {
width: 100%;
height: 260px;
}
}
@media (max-width: 480px) {
.contents {
display: flex;
flex-wrap: wrap;
}
.contents .left {
width: 100%;
height: 150px;
}
.contents .left .cont1 {
height: 150x;
}
.contents .right {
width: 100%;
height: 630px;
}
.contents .right .cont2 {
height: 210px;
}
.contents .right .cont3 {
height: 210px;
}
.contents .right .cont4 {
height: 210px;
}
}
gird๋ฅผ ์ด์ฉํ ๋ฐ์ํ ๋ ์ด์์
์ธ๋ถ์ ์ธ ์์๋ค์ด ๋ณต์กํ๊ฒ ๋ค์ด๊ฐ ์๋ ๊ฒฝ์ฐ ํจ์จ์ ์ธ ๋งํฌ์
๊ณผ ์๋ฉํฑ ๋งํฌ์
์ ๋ํ ์ค์๋๊ฐ ๋์์ง๋ค.
๊ฐ ์์์ ๋ํ ๋ถ๋ชจ์์์ ์์์์๋ค์ ํจ์จ์ ์ผ๋ก ๋ถ์ํ๊ณ ๋๋ ์ค ์์์ผ ํ๋ค.
* {
margin: 0;
}
#wrap {}
#header {
height: 100px;
background-color: #EEEBE9;
}
#nav {
height: 100px;
background-color: #BCAAA4;
}
#main {
height: 780px;
background-color: #886F65;
}
#footer {
height: 100px;
background-color: #4E342E;
}
/* ์ปจํ
๋ฆฌ๋ ์ค์ */
.container {
width: 1200px;
height: inherit;
margin: 0 auto;
background-color: rgba(0, 0, 0, 0.3);
}
/* contents ์ค์ */
.contents {
display: grid;
grid-template-areas:
"cont1 cont1"
"cont2 cont2"
"cont3 cont4"
;
grid-template-columns: 50% 50%;
grid-template-rows: 100px 200px 480px;
}
.contents .cont1 {
background-color: #74574A;
grid-area: cont1;
}
.contents .cont2 {
background-color: #684D43;
grid-area: cont2;
}
.contents .cont3 {
background-color: #594139;
grid-area: cont3;
}
.contents .cont4 {
background-color: #4A352F;
grid-area: cont4;
}
/* ๋ฏธ๋์ด์ฟผ๋ฆฌ */
@media (max-width:1220px) {
.container {
width: 96%;
}
.contents {
display: grid;
grid-template-areas:
"cont1 cont2 cont2"
"cont1 cont3 cont4"
;
/* grid-template-columns: 1fr 1fr 1fr; 3๋ฑ๋ถ */
grid-template-columns: repeat(3, 1fr); /* 3๋ฑ๋ถ */
/* grid-template-columns: repeat(3, 33.3333%); /* 3๋ฑ๋ถ */
/* grid-template-columns: 33.3333% 33.3333% 33.3333%; 3๋ฑ๋ถ */
/* grid-template-rows: 780px 200px 480px; */
grid-template-rows: repeat(2, 1fr);
}
}
@media (max-width:768px) {
.contents {
display: grid;
grid-template-areas:
"cont1 cont2"
"cont1 cont3"
"cont1 cont4"
;
grid-template-columns: 30% 70%;
grid-template-rows: repeat(3, 1fr);
}
}
@media (max-width:480px) {
.contents {
display: grid;
grid-template-areas:
"cont1"
"cont2"
"cont3"
"cont4"
;
grid-template-columns: 100%;
grid-template-rows: 150px 210px 210px 210px;
}
}
๊ฒฐ๊ณผ
'SITE > LAYOUT' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
๋ ์ด์์04 (4) | 2022.07.29 |
---|---|
๋ ์ด์์03 (4) | 2022.07.29 |
๋ ์ด์์02 (4) | 2022.07.29 |
๋ ์ด์์01 (5) | 2022.07.27 |
๋๊ธ