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
| body, html { font-size: 100%; padding: 0; margin: 0;}
|
| /* Reset */
| *,
| *:after,
| *:before {
| -webkit-box-sizing: border-box;
| -moz-box-sizing: border-box;
| box-sizing: border-box;
| }
|
| /* Clearfix hack by Nicolas Gallagher: http://nicolasgallagher.com/micro-clearfix-hack/ */
| .clearfix:before,
| .clearfix:after {
| content: " ";
| display: table;
| }
|
| .clearfix:after {
| clear: both;
| }
|
| body{
| font-family: "Microsoft YaHei","Segoe UI", "Lucida Grande", Helvetica, Arial,sans-serif;
| }
|
|