-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathfooter.html
69 lines (64 loc) · 1.41 KB
/
footer.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=0">
<meta name="apple-mobile-web-app-capable" content="yes">
<style>
* {
margin: 0;
padding: 0;
}
.footer-nav {
height: 60px;
width: 100%;
background-color: #f0f32e;
position:fixed;
bottom: 0;
left: 0;
}
.footer-nav .item {
width: 33%;
height: 57px;
margin-left: 1px;
margin-top: 3px;
float: left;
list-style: none;
/*flex: 1;*/
/*background: darkgray;*/
}
.footer-nav .item .img {
height: 33px;
width: 30px;
margin: 0 auto;
}
.footer-nav .item .img img {
height: 33px;
}
.footer-nav .item .text {
height: 20px;
font-size: 12px;
line-height: 20px;
text-align: center;
/*background: darkkhaki;*/
}
</style>
</head>
<body>
<ul class="footer-nav">
<li class="item">
<div class="img"><img src="static/vegetables.png"></div>
<p class="text">首页</p>
</li>
<li class="item">
<div class="img"><img src="static/vegetables.png"></div>
<p class="text">首页2</p>
</li>
<li class="item">
<div class="img"><img src="static/vegetables.png"></div>
<p class="text">首页3</p>
</li>
</ul>
</body>
</html>