微信移動端點擊出現(xiàn)藍(lán)色框的解決方案
所屬欄目: 網(wǎng)站開發(fā) | 更新時間:2016-8-27 | 閱讀:8113 次
/*這一句是用來解決在安卓上的點擊出現(xiàn)籃框問題*/
body{ -webkit-tap-highlight-color:rgba(0,0,0,0); }
/*下面是解決ios上去除微信點擊藍(lán)色邊框 */
a:focus,
input:focus,
p:focus,
div:focus{
-webkit-tap-highlight-color:rgba(0,0,0,0);
-webkit-user-modify:read-write-plaintext-only;
}
body{ -webkit-tap-highlight-color:rgba(0,0,0,0); }
/*下面是解決ios上去除微信點擊藍(lán)色邊框 */
a:focus,
input:focus,
p:focus,
div:focus{
-webkit-tap-highlight-color:rgba(0,0,0,0);
-webkit-user-modify:read-write-plaintext-only;
}