-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMyBoxModel.css
75 lines (60 loc) · 1.52 KB
/
MyBoxModel.css
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
67
68
69
70
71
72
73
74
75
body {
margin-right: auto;
margin-left: auto;
margin: 0; /*default space outside the object body*/
width: 1920px; /*/set default width*/ /*commented out*/
height: 100%; /*/set default to the height of window*/ /*commented out*/
}
img {/* holder for any image attributes*/
}
.containerBig {
width: 1440px;
height: 1024px;
background-color: white;
position: absolute;
}
#box1 {
margin-top: 100px;
margin-left: 120px;
width: 1200px;
height: 824px;
background-color: white;
float:left; /*The float property specifies how an element should float.*/
}
#boxSide{
width: 236px;
height: 824px;
background-color: white;
float:left; /*The float property specifies how an element should float.*/
}
#boxMiddle{
width: 720px;
height: 824px;
padding-left: 8px;
background-color: white;
float:left; /*The float property specifies how an element should float.*/
}
#boxSideTopLeft{
width: 236px;
height: 24px;
margin-top: 500px;
margin-left: 65px;
background-color: white;
float:left; /*The float property specifies how an element should float.*/
}
#boxSideTopRight{
width: 216px;
height: 24px;
margin-top: 500px;
margin-left: 20px;
background-color: white;
float:left; /*The float property specifies how an element should float.*/
}
#boxSideBot{
width: 216px;
height: 245px;
margin-left: 20px;
margin-top: 55px;
background-color: white;
float:left; /*The float property specifies how an element should float.*/
}