css常用标签

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
 
body {
    font-size: 14px;
    font-family: '微软雅黑', PingFangSC-Regular, Verdana, Arial, '宋体';
    background-color: #fff;
}
ul,
li {
    list-style-type: none;
}
table {
    border-collapse: collapse;
    table-layout: fixed;
}
a {
    text-decoration: none;
    color: inherit;
}
原文地址:https://www.cnblogs.com/marswenze/p/12752809.html