1. 程式人生 > >手機端a標籤觸碰時背景色消除

手機端a標籤觸碰時背景色消除

問題:
當a標籤包含元素的時候,觸碰該元素會出現存在灰色背景的現象。
解決方法:
設定css樣式
a,a:hover,a:active,a:visited,a:link,a:focus{
-webkit-tap-highlight-color:rgba(0,0,0,0);
-webkit-tap-highlight-color: transparent;
outline:none;
background: none;
text-decoration: none;
}
註釋:
設定之後,頁面上a標籤存在背景圖或者顏色等設定會顯示不出來,所以要做好判斷。