自己写CSS的“初始化”代码
自己每次写CSS的时候基本都用到了这些代码,像是“初始化”设置一般,设置所有样式内边距,外边距为0,设置字体, 去掉点击虚边框等,整理下,以后用的时候直接复制粘贴过去。
@charset "UTF-8";
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Helvetica Neue", Helvetica, Arial, "Microsoft Yahei UI", "Microsoft YaHei", SimHei, "宋体", simsun, sans-serif;
}
a {
text-decoration: none;
outline: none;
color: #333;
}
a:hover{
color: #FF7400;
}
button,input{
outline: none;
}
ul {
list-style: none;
}
img {
outline: none;
border: 0;
}