取消a标签在移动端点击时的背景颜色 && 去除ios手机端input输入框上方有阴影

一、取消a标签在移动端点击时的蓝色

-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
-webkit-user-select: none;
-moz-user-focus: none;
-moz-user-select: none;

二、使用图片作为a标签的点击按钮时,当触发touchstart的时候,往往会有一个灰色的背景

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;
}

三、改变选中内容的背景颜色

::selection { 
    background: #eee; 
    color: #666; 
} 

四、在IOS下,input 和textarea表单默认会有个内阴影,一定程度上影响视觉一致,可通过设置下面代码去掉:

 -webkit-appearance:none; /*去除input默认样式*/
 -webkit-tap-highlight-color:rgba(0, 0, 0, 0); /*去除点击高亮的颜色*/

你可能感兴趣的:(css)