美文网首页
移动端项目中, 清除一些苹果手机的默认样式

移动端项目中, 清除一些苹果手机的默认样式

作者: 胖太_91bf | 来源:发表于2017-11-03 17:06 被阅读0次

清除ios端按钮的默认样式:

button {
  border: none;
  outline: none;
  -webkit-appearance:none;
  border-radius: 0;
}
input[type="button"], input[type="submit"], input[type="reset"] {

  -webkit-appearance: none;
  border-radius: 0;

}

清除a标签点击是的黑色背景:

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

移动端overflow: scroll 滑动不流畅问题解决:
添加如下样式:

html,body {
  -webkit-overflow-scrolling: touch;
}

相关文章

网友评论

      本文标题:移动端项目中, 清除一些苹果手机的默认样式

      本文链接:https://www.haomeiwen.com/subject/bdgtmxtx.html