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
| <!DOCTYPE html>
| <html lang="">
| <head>
| <meta charset="utf-8">
| <title>自动仓库WCS系统</title>
| <meta name="renderer" content="webkit">
| <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
| <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=0">
| <link rel="stylesheet" type="text/css" href="../static/css/normalize.css">
| <style>
| /* 统一处理 */
| *, *::before, *::after {
| -webkit-box-sizing: border-box;
| box-sizing: border-box;
| margin: 0;
| padding: 0;
| }
| html {
| line-height: 1.5;
| font-size: 15px;
| }
|
| .nav {
| background-color: #fd5830;
| }
| .nav ul li {
| list-style-type: none;
| }
| </style>
| </head>
| <body>
| <div class="nav">
| <ul>
| <li>导航一</li>
| <li>导航二</li>
| <li>导航三</li>
| <li>导航四</li>
| </ul>
| </div>
| </body>
| </html>
|
|