清除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;
}