欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

取消a标签在移动端点击时的背景颜色

程序员文章站 2022-06-19 10:36:38
一、取消a标签在移动端点击时的蓝色 a{ -webkit-tap-highlight-color: rgba(255, 255, 255, 0); -webkit-user-select: none; -moz-user-focus: none; -moz-user-select: none; } ......

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

        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: #fff; 
    color: #333; 
} 
::-moz-selection { 
    background: #fff; 
    color: #333; 
} 
::-webkit-selection { 
    background: #fff; 
    color: #333; 
} 

 

四、去除ios input框点击时的灰色背景

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