移动端特殊样式处理

/* CSS3 盒子模型*/
box-sizing: border-box;
-webkit-box-sizing: border-box;

/* 清除点击高亮,设置为透明 */
-webkit-tap-highlight-color: transparent;

/* 禁用长按图片、链接时弹出菜单 */
img, a {
  -webkit-touch-callout: none;
}

你可能感兴趣的:(前端csscss3)