forked from itstrive/itstrive.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo.html
86 lines (66 loc) · 1.69 KB
/
demo.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>智能社——http://www.zhinengshe.com</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<style>
*{
margin:0;
padding:0;
list-style: none;
}
html,body{
height:100%;
}
.wrap{
height:100%;
display: flex;
flex-direction: column;
}
.wrap header,.wrap footer{
height:40px;
line-height: 40px;
background: #279699;
color: #fff;
text-align: center;
}
.wrap header{
display: flex;
justify-content: space-between;
}
nav{
display: flex;
}
nav a{
flex:1;
}
.wrap section{
flex:1;
}
</style>
<script>
</script>
</head>
<body>
<div class="wrap">
<header>
<a href="javascript:;">返回</a>
<h1>LOGO</h1>
<a href="javascript:;">菜单</a>
</header>
<section>
section
</section>
<footer>
<nav>
<a href="javascript:;" style="background: #ff6698">导航1</a>
<a href="javascript:;" style="background: #757eff">导航2</a>
<a href="javascript:;" style="background: #ff8e83">导航3</a>
</nav>
</footer>
</div>
</body>
</html>