-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcssgroupactivity
More file actions
74 lines (72 loc) · 1.78 KB
/
cssgroupactivity
File metadata and controls
74 lines (72 loc) · 1.78 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
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Group Activity</title>
<style media="screen">
.left_content, .middle_content, .right_content{
display: inline-block;
position: relative;
margin-top: 20px;
margin-bottom: 20px;
}
.header{
width: 580px;
height: 150px;
background-color: red;
}
.left_content{
width: 130px;
height: 600px;
background-color: green;
}
.middle_content{
width: 250px;
height: 600px;
position: relative;
margin-left: 30px;
margin-right: 30px;
background-color: yellow;
}
.right_content{
width: 130px;
height: 600px;
background-color: green;
}
.footer{
width: 580px;
height: 225px;
background-color: blue;
}
.sub_footer{
width: 150px;
height: 250px;
background-color: violet;
margin: 20px;
display: inline-block;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
</div><!-- end_of_header -->
<div class="left_content">
</div><!-- end_of_left_content -->
<div class="middle_content">
</div><!-- end_of_middle_content -->
<div class="right_content">
</div><!-- end_of_right_content -->
<div class="footer">
<div class="sub_footer">
</div><!-- end_of_sub_footer -->
<div class="sub_footer">
</div><!-- end_of_sub_footer -->
<div class="sub_footer">
</div><!-- end_of_sub_footer -->
<div class="sub_footer">
</div><!-- end_of_sub_footer -->
</div><!-- end_of_footer -->
</div><!-- end_of_container -->
</body>
</html>