body

  1. body {
  2. width: 100%;
  3. margin: 0 auto;
  4. min-width: 320px;
  5. max-width: 640px;
  6. background: #fff;
  7. font-size: 14px;
  8. font-family: -apple-system, Helvetica, sans-serif;
  9. line-height: 1.5;
  10. color: #666;
  11. background-color: #ccc;
  12. height: 2000px;
  13. }

去掉后面两

特殊样式

加入下面的代码

  1. * {
  2. /* css3盒子模型 */
  3. box-sizing: border-box;
  4. -webkit-box-sizing: border-box;
  5. /* 点击高亮 我们需要清除 设置为transparent 完全透明 */
  6. -webkit-tap-highlight-color: transparent;
  7. }
  8. input {
  9. /* 在移动端浏览器默认的外观在ios加上这个属性才能给按钮和输入框自定义样式 */
  10. -webkit-appearance: none;
  11. }
  12. /* 禁用长按页面时的弹出菜单 */
  13. img,
  14. a {
  15. -webkit-touch-callout: none;
  16. }