Remove blue border from css custom-styled button in Chrome

前端 未结 22 930
闹比i
闹比i 2020-11-22 17:10

I\'m working on a web page, and I want custom-styled

22条回答
  •  隐瞒了意图╮
    2020-11-22 17:20

    for this problem:

    use this:

       *{
             -webkit-tap-highlight-color: rgba(0,0,0,0);
             -webkit-tap-highlight-color: transparent; /* For some Androids */
        }
    

    result:

提交回复
热议问题