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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>가변 레이아웃</title>
<style>
body {
    margin: 0;
}
header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background-color: orange;
}
article {
    position: absolute;
    top: 100px;
    bottom: 50px;
    left: 0;
    right: 200px;
    overflow: auto;
    background-color: green;
}
aside {
    position: absolute;
    top: 100px;
    bottom: 50px;
    right: 0;
    width: 200px;
    overflow: auto;
    background-color: pink;
}
footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background-color: skyblue;
}
</style>
</head>
 
<body>
    <header>Header</header>
    <div>
        <article>Article</article>
        <aside>Aside</aside>
    </div>
    <footer>Footer</footer>
</body>
</html>


반응형
Posted by 힘없는염소