清除input默認(rèn)樣式
????border: none; 去除表框
????outline: none; 去除外邊框線
清除浮動
? ??.clearfix::after {
? ? ? ? ? ?content: "";? 插入的內(nèi)容
? ? ? ? ? ?display: block; 轉(zhuǎn)化成塊元素
? ? ? ? ? ?height: 0;?
? ? ? ? ? ?line-height: 0;?
? ? ? ? ? ?clear: both;
? ? ? ? ? ?visibility: hidden;
}
a 標(biāo)簽的初始化樣式
?a {
????text-decoration: none; 去除下劃線
????color: inherit; 繼承父元素的字體顏色
????-webkit-tap-highlight-color: transparent;? transparent = 透明 點擊 高亮 只存在于移動端 快捷鍵 tap就可以看到提示
????display: block; 轉(zhuǎn)成塊級元素
}
移動端的理想視口
? ? <meta name="viewport" content="width=device-width, initial-scale=1.0,maximum-scale=1,minimum-scale=1,user-scalable=no">