首页 > 代码库 > css reset

css reset

// 简单的reset

*{
margin: 0;
border: 0;
padding: 0;
}
a{
text-decoration: none;
color: #000;
}
ul{
list-style: none;
}
body{
font-family: "微软雅黑";
font-size: 16px;
}

css reset