去除浏览器输入框等的边框(包括手机浏览器)

在电脑上只需加入

input{
    outline:none
}
input:focus{
    outline:none
}

而在手机浏览器上是没有效果的

手机浏览器需要设置

input{
    -webkit-tap-highlight-color:rgba(0,0,0,0);
}
input:focus{
    -webkit-tap-highlight-color:rgba(0,0,0,0);
}
原文地址:https://www.cnblogs.com/fenglie/p/4283210.html