-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexam_1.html
102 lines (96 loc) · 2.01 KB
/
exam_1.html
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>网页布局基础练习</title>
<style type="text/css">
*{
margin:0;
padding:0;
}
.head-box{
background-color:silver;
height:100px;
width:1100px;
margin:0 auto;
}
.body-class{
background-color:skyblue;
width:1100px;
height:550px;
margin:0 auto;
}
.footer-class{
background-color:green;
height:100px;
width:1100px;
margin:0 auto;
}
.box1{
background-color:pink;
height:550px;
width:190px;
float:left;
}
.box2{
background-color:purple;
height:550px;
width:700px;
margin:0 10px;
float:left;
}
.box3{
height:550px;
width:190px;
background-color:black;
float:left;
}
.box4{
width:700px;
height:250px;
background:white;
margin-bottom:20px;
}
.box5{
width:700px;
height:280px;
background:#bfa;
}
.box_{
height:240px;
width:300px;
margin:20px 10px;
float:left;
background-color:blue;
}
.box_1{
height:240px;
width:380px;
float:left;
background-color:red;
margin:20px 0;
}
</style>
</head>
<header>
<div class="head-box">
</div>
</header>
<body>
<div class="body-class">
<div class="box1"></div>
<div class="box2">
<div class="box4"></div>
<div class="box5">
<div class="box_">
</div>
<div class="box_1"></div>
</div>
</div>
<div class="box3"></div>
</div>
</body>
<footer>
<div class="footer-class"></div>
</footer>
</html>