Skip to content

Latest commit

 

History

History
executable file
·
20 lines (15 loc) · 332 Bytes

移动web踩坑.md

File metadata and controls

executable file
·
20 lines (15 loc) · 332 Bytes

前言

收集移动端web的踩坑

ios的点击阴影问题

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

ios端css设置的:hover样式失效,但是安卓端不会

需要把 :hover 更改为 :active,并在body标签上增加 ontouchstart 属性:

<body ontouchstart>
  //...
</body>