728x90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>layout4</title>
</head>
<style>
* {margin: 0; padding: 0;}
body { background-color: #fffde7;}
#wrap {width: 1200px; margin: 0 auto;}
header {width: 100%; height: 100px; background-color: #ffe082;}
article {width: 100%; height: 300px; background-color: #ffd54f;}
section {overflow: hidden; padding: 5%; width: 90%;background-color: #ffca28;}
section > div {width: 18%; margin: 1%; height: 170px; background-color: #ff9800; float: left; border-radius: 5px;}
footer {width: 100%; height: 100px; background-color: #ffb300}
/* 화면 너비 0 ~ 1200px */
@media (max-width: 1180px){
#wrap {width: 100%;}
section > div {width: 23%;}
section > div:nth-child(5n) {display: none;}
}
/* 화면 너비 0 ~ 768px */
@media (max-width: 768px){
section > div {width: 31.3333%;}
section > div:nth-child(5) {display: block;}
}
/* 화면 너비 0 ~ 480px */
@media (max-width: 480px){
section > div {width: 48%;}
section > div:nth-child(5n) {display: block;}
}
</style>
<body>
<div id="wrap">
<header></header>
<article></article>
<section>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</section>
<footer></footer>
</div>
</body>
</html>
'내마음대로만들어보자 > HTML' 카테고리의 다른 글
HTML5 아웃라이너(틀잡기) (0) | 2022.04.09 |
---|---|
반응형 사이트 만들기 - 레이아웃5 (0) | 2022.04.08 |
반응형 사이트 - 레이아웃3 (0) | 2022.04.07 |
반응형 사이트 - 레이아웃2 (0) | 2022.04.07 |
반응형 사이트 - 레이아웃 유형 (0) | 2022.04.07 |