-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path版心的问题.html
56 lines (54 loc) · 1.09 KB
/
版心的问题.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" href="reset.css">
<style>
html, body {
width: 100%;
height: 100%;
overflow-x: hidden;
}
.w1104 {
width: 1104px;
margin: auto;
border: 2px solid darkgrey;
}
.first {
width: 100px;
height: 100px;
border: 2px solid darkorange;
}
ul{
width: 100%;
}
ul > li {
float: left;
margin-left: 5px;
width: 15%;
height: 200px;
border: 2px solid darkgrey;
}
.footer{
width: 100%;
height: 10px;
background: red;
}
</style>
</head>
<body>
<div class="w1104">
<div class="first"></div>
<ul class="clear">
<li class=""></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
<div class="footer"></div>
</div>
</body>
</html>