去掉 wap (android/ios)网页等点击后的阴影
时间:2014-09-01 17:28:23
收藏:0
阅读:317
tap后会出现一个半透明的灰色背景,(被批...),起初以为是outline作怪,加上后发现没反应,最后发现是tap后的背景高亮,要重设这个表现,则需要设置-webkit-tap-highlight-color为所需色彩,直接透明吧:
- a,img,button,input,textarea{-webkit-tap-highlight-color:rgba(255,255,255,0);}
另外,如何去掉textarea,input的默认样式(IOS上的圆角及内阴影等,Android未测试):
- input,textarea{-webkit-appearance:none;}
原文:http://www.cnblogs.com/sunshq/p/3949483.html
评论(0)