您的位置:首页 > 其它

移除触屏设备"点击"产生的半透明灰色背景及边框

2014-09-04 17:52 337 查看
小注:移除触屏设备"点击"产生的半透明灰色背景及边框

a,button,input[type="text"]{

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

    -webkit-tap-highlight-color: transparent; /* For some Androids */

    -webkit-user-modify: read-write-plaintext-only; /* for 4.0.4 */

    outline: none !important;

}

* {

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

}

:focus {

    outline: 0;

    border:none;

    color: rgba(0, 0, 0, 0);
}

参考链接:

Disable orange outline highlight on focus
http://stackoverflow.com/questions/5210481/disable-orange-outline-highlight-on-focus
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐