forked from mvolkmann/mvolkmann.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
52 lines (45 loc) · 851 Bytes
/
Copy pathmain.css
File metadata and controls
52 lines (45 loc) · 851 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
42
43
44
45
46
47
48
49
50
51
52
body {
border: solid black 1px;
}
div {
padding: 10px;
}
#header {
background-color: red;
height: 75px;
margin-bottom: 10px;
}
/* When div tags float, they are not constrained
to remain in their parent div! */
#left {
background-color: orange;
float: left;
margin-bottom: 10px;
overflow: auto;
/*left: 0px;*/
width: 150px;
}
#center {
background-color: yellow;
margin-bottom: 10px;
margin-left: 180px; /* d2 width + 2*(d2 padding) + 10 */
margin-right: 130px; /* d4 width + 2*(d4 padding) + 10 */
overflow: auto;
}
#right {
background-color: green;
float: right;
height: auto;
margin-bottom: 10px;
overflow: auto;
/*right: 0px;*/
width: 100px;
}
#footer {
background-color: blue;
clear: both;
height: 100px;
}
#outer {
height: 100%;
}