如下图所示,在 surface 上点击一个 div,会产生半透明的黑色背景。这个能用 css 禁止掉么?
div 是这样写的
<style>
div{background:url('../images/btn.png');width:50px;height:50px}
</style>
<div onclick="location.href='abc.html'"></div>
1
seognilV2 2017-09-06 21:33:33 +08:00 via Android
-webkit-tap-highlight-color: transparent;
user-select: none; |