1. 程式人生 > >移動端點擊出現藍色框的解決方案

移動端點擊出現藍色框的解決方案

/這一句是用來解決在安卓上的點擊出現籃框問題/

body{ -webkit-tap-highlight-color:rgba(0,0,0,0); }

/下面是解決ios上去除微信點選藍色邊框 /

a:focus,
input:focus,
p:focus,
div:focus{
-webkit-tap-highlight-color:rgba(0,0,0,0);
-webkit-user-modify:read-write-plaintext-only; 
}