-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlayout6.css
More file actions
66 lines (66 loc) · 1.29 KB
/
layout6.css
File metadata and controls
66 lines (66 loc) · 1.29 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
60
61
62
63
64
65
66
*{
margin: 0px;
padding: 0px;
font-family: Arial;
box-sizing: border-box;
}
#wrapper-div{
width: 60%;
min-height: 100px;
/* background-color: orange; */
/* to place it horizontally you have to use margin auto property */
margin: auto;
}
#logo-div{
width: 100%;
min-height: 50px;
background-color: lightgray;
line-height: 50px;
padding-left: 2%;
margin-bottom: 10px;
}
#main-div{
width: 100%;
min-height: 500px;
/* background-color: red; */
}
#left-div{
width: 20%;
min-height: 500px;
/* background-color: green; */
float: left;
}
#right-div{
width: 70%;
min-height: 500px;
/* background-color: blue; */
float: right;
}
.clearfix::after{
content: "";
display: block;
clear: both;
}
#header-banner-div{
width: 100%;
min-height: 150px;
background-color: lightgray;
margin-bottom: 50px;
text-align: center;
line-height: 150px;
}
#bodyarea-div{
width: 100%;
min-height: 300px;
background-color: lightgray;
text-align: center;
line-height: 300px;
}
#footer-div{
width: 100%;
min-height: 50px;
background-color: lightgray;
margin-top: 10px;
text-align: center;
line-height: 50px;
}