-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path14-2_styles.css
More file actions
64 lines (55 loc) · 1.08 KB
/
14-2_styles.css
File metadata and controls
64 lines (55 loc) · 1.08 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
body {
margin: 0;
}
#div1 {
height: 60px;
width: 100%;
background-color: red;
float: left;
}
#div2 {
height: 350px;
width: 100%;
background-color: orange;
float: left;
}
#div3 {
height: 320px;
width: 100%;
background-color: yellow;
float: left;
}
#div4 {
height: 385px;
width: 100%;
background-color: green;
float: left;
}
#div5 {
height: 200px;
width: 100%;
background-color: blue;
float: left;
}
#div6 {
height: 200px;
width: 100%;
background-color: navy;
float: left;
}
@media (min-width: 768px) {
#div1 {height: 60px; width: 100%;}
#div2 {height: 562px; width: 100%;}
#div3 {height: 282px; width: 100%;}
#div4 {height: 360px; width: 50%;}
#div5 {height: 180px; width: 50%;}
#div6 {height: 180px; width: 50%;}
}
@media (min-width: 992px) {
#div1 {height: 60px; width: 100%;}
#div2 {height: 700px; width: 50%;}
#div3 {height: 350px; width: 50%;}
#div4 {height: 350px; width: 25%;}
#div5 {height: 175px; width: 25%;}
#div6 {height: 175px; width: 25%;}
}