瀏覽器重置樣式

 

/*重置樣式*/
*,::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」web

.clear {
    clear: both;
}
相關文章
相關標籤/搜索