a border: none webkit tap highlight color: rgba , , , webkit tap highlight color: transparent outline: none ...
2017-01-05 17:45 0 1887 推荐指数:
在写手机端页面的时候,遇到一个问题,当你写的a标签,在手机上点击时,会有一个蓝色或者其他颜色的边框,对用户体验比较差 可以在css里添加样式,去除默认样式 a,button,input{-webkit-tap-highlight-color:rgba(255,0,0,0);} ...
手机端a标签会自动补充出现边框或者背景,使得用户知道a标签的点击状态,但样式很不好看 -webkit-tap-highlight-color: rgba(0,0,0,0);-webkit-tap-highlight-color:transparent; 都可以 ...
...
1、去除input的边框 2、去除input选中时的蓝色边框线 ...
之前做移动端的Portal时,手机上测试,点击a标签总是出现一个背景框在CSS中添加 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);就可以了做移动端的,可以试试,我好久不做移动端了... ... a:active ...