-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle2.css
More file actions
48 lines (48 loc) · 770 Bytes
/
style2.css
File metadata and controls
48 lines (48 loc) · 770 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
/*CSS reset settings here*/
*{
margin: 0px;
padding: 0px;
}
#wrapper{
width: 950px;
height: auto;
padding: 1px 0 25px;
background-color: silver;
margin: 0px auto;
}
#header{
height: 150px;
width: 900px;
margin: 25px;
background-color: green;
}
#navigation{
margin-left: 25px;
height: 300px;
width: 200px;
background-color: blue;
display: inline-block;
vertical-align: top;
}
#main_content{
margin-left: 25px;
height: 400px;
width: 670px;
background-color: red;
display: inline-block;
vertical-align: top;
}
.subcontents{
margin: 25px 0 0 25px;
height: 200px;
width: 187px;
background-color: yellow;
display: inline-block;
vertical-align: top;
}
#advertisement{
margin: 25px;
height: 120px;
width: 620px;
background-color: purple;
}