forked from DevMountain/HTML-CSS-Practice-Problems
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstep-1.css
More file actions
35 lines (27 loc) · 630 Bytes
/
Copy pathstep-1.css
File metadata and controls
35 lines (27 loc) · 630 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
.header {
width: 100%;
height: 100px;
background: #D8D8D8;
}
/* Position content-left to the left of screen */
.content-left {
width: 34%;
height: calc( 100vh - 200px );
background: #565555;
float: left;
}
/* Position content-mid to the right of content left. Make this container take up the remaining width of the screen */
.content-mid {
width: 66%;
height: calc( 100vh - 200px );
background: #B0B0B0;
float: right;
}
/* Position footer at the bottom of screen */
.footer {
width: 100%;
height: 100px;
background: #3A3A3A;
position: absolute;
bottom: 0;
}