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

在电脑上只需加入

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

 

posted @ 2015-02-10 10:36  fenglie  阅读(840)  评论(0编辑  收藏  举报
版权所有,转载声明