去默认butoon边框

来源:互联网 发布:帝国cms目录结构 编辑:程序博客网 时间:2024/06/15 21:12

a、button、input点击出现蓝色边框,如何去掉



  • a,button,input{ 

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

   -webkit-user-modify: read-write-plaintext-only;

}

可根据实际情况添加

outline: none;

box-shadow: none;

有时候<img />图片放在a标签里也会出现边框,可设置图片的边框为0.

除此之外还要注意其伪类的设置。


js方法:

onclick="this.blur()"

  • a,button,input{ 
原创粉丝点击