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;
}
posted @ 2020-04-22 16:13  2020小白  阅读(134)  评论(0)    收藏  举报