How to remove the border highlight on an input text element

前端 未结 18 1000
庸人自扰
庸人自扰 2020-11-22 05:49

When an HTML element is \'focused\' (currently selected/tabbed into), many browsers (at least Safari and Chrome) will put a blue border around it.

For the layout I a

18条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-11-22 06:42

    I tried all the answers and I still couldn't get mine to work on Mobile, until I found -webkit-tap-highlight-color.

    So, what worked for me is...

    * { -webkit-tap-highlight-color: transparent; }
    

提交回复
热议问题