-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExample_18.html
More file actions
59 lines (59 loc) · 1.26 KB
/
Copy pathExample_18.html
File metadata and controls
59 lines (59 loc) · 1.26 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="kr">
<head>
<meta charset="UTF-8">
<title>레이아웃1</title>
<style>
.container{
width: 1200px;
border: 1px solid black;
}
header{
height: 100px;
background-color: blue;
}
nav{
height: 100px;
background-color: lightblue;
}
section{
width: 800px;
height: 900px;
background-color: yellow;
float: left;
position: relative;
}
article{
width: 800px;
height: 300px;
background-color: lightseagreen;
float: left;
position: absolute;
left: 0;
bottom: 0;
}
aside{
width: 400px;
height: 900px;
background-color: red;
float: right;
}
footer{
height: 100px;
background-color: blue;
clear: both;
}
</style>
</head>
<body>
<div class="container">
<header></header>
<nav></nav>
<section>
<article></article>
</section>
<aside></aside>
<footer></footer>
</div>
</body>
</html>