1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| /* 统一处理 */
| *, *::before, *::after {
| -webkit-box-sizing: border-box;
| box-sizing: border-box;
| margin: 0;
| padding: 0;
| }
| html {
| line-height: 1.5;
| font-size: 15px;
| font-family: sans-serif;
| height: 100%;
| }
| body {
| height: 100%;
| }
|
| iframe {
| border-width: 0;
| }
|
|