-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout04.html
More file actions
41 lines (38 loc) · 1005 Bytes
/
layout04.html
File metadata and controls
41 lines (38 loc) · 1005 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>layout04</title>
<style>
* {margin: 0; padding: 0;}
#wrap {width: 100%;}
header {width: 100%; height: 150px; background: #81c784;}
nav {float: left; width: 30%; height: 700px; background: #66bb6a;}
section {float: left; width: 40%; height: 700px; background: #4caf50;}
article {float: left; width: 30%; height: 700px; background: #43a047;}
footer {clear: both; width: 100%; height: 150px; background: #388e3c;}
@media (max-width: 1220px){
article {width: 100%; height: 300px;}
nav {width: 40%;}
section {width: 60%;}
@media (max-width: 768px){
nav {width: 100%; height: 300px;}
section {width: 100%; height: 300px;}
}
@media (max-width: 500px) {
header {height: 300px;}
nav {height: 200px;}
section {height: 200px;}
}
</style>
</head>
<body>
<div id="wrap">
<header></header>
<nav></nav>
<section></section>
<article></article>
<footer></footer>
</div>
</body>
</html>