浏览器重置样式

/*重置样式*/
*,::before,::after{
    /*选择所有的标签*/
    margin:0;
    padding:0;
    /*设置所有的都是以边框开始计算宽度 百分比*/
    -webkit-box-sizing:border-box;/*兼容*/
    box-sizing:border-box;
}
a{
    text-decoration:none;/*不显示下划线*/
}
a:hover{
    text-decoration:none;/*不显示下划线*/
}
ul,ol{
    list-style:none;
}

 清除浮动,盒子里的浮动,在盒子结束标签前添加div标签,class=“clear”

.clear {
    clear: both;
}
原文地址:https://www.cnblogs.com/hongmaju/p/7450312.html