-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblocks.CSS
More file actions
51 lines (49 loc) · 914 Bytes
/
blocks.CSS
File metadata and controls
51 lines (49 loc) · 914 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
/*CSS reset settings here*/
*{
margin: 0px;
padding: 0px;
}
#wrapper{
width: 950px;
background-color: silver;
margin: 0px auto;
overflow: hidden;
height: auto;
}
#header{
height: 150px;
background-color: green;
margin: 20px;
}
#navigation{
height: 300px;
width: 200px;
background-color: blue;
margin-left:20px;
margin-right: 15px;
display: inline-block;
}
#main_content{
height: 400px;
width: 690px;
background-color: red;
display: inline-block;
vertical-align: top;
margin-bottom: 15px;
}
.subcontents{
height: 200px;
width: 200px;
background-color: yellow;
margin: 15px 0 0 15px ;
}
#advertisement{
height: 120px;
width: 630px;
background-color: purple;
display: block;
margin: 240px 0 0 15px;
}
#box1, #box2, #box3{
float: left;
}