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
/* 初始化start */
* {
margin: 0px; /* 内间距 */
padding: 0px; /* 外间距 */
font-size: 16px; /* 默认字体大小,谷歌的默认字体大小 */
box-sizing: border-box; /*减掉border和padding的值*/
}
a{
text-decoration: none; /* 消除下划线 */
color: #fff; /* 主题颜色: 白色*/
}
a:hover{
color: #e33333;
}
input{
outline: none; /* 去除选中后的黑色内边线效果 */
}
/*图片没有边框*/
img{
border: 0;
vertical-align: middle;
}
/*让所有斜体 不倾斜*/
em,
i {font-style: normal;
}
/*去掉列表前面的小点*/
li{
list-style: none;
}
/*让button按钮变成小手*/
button{
cursor: pointer;
}
CSS初始化
本文由作者按照 CC BY 4.0 进行授权