移动端的一些初始化 css 样式。。。

*{
  margin: 0;
  padding: 0;
  // 盒子模型
  box-sizing: border-box;
}
a{
  text-decoration: none;
  // 去除掉 移动端下的a标签的点击高亮
  -webkit-tap-highLight-color:transparent;
  // 让a标签的字体颜色和普通的div一样 会继承 不再是蓝色
  color: inherit;
}   
原文地址:https://www.cnblogs.com/javascript9527/p/12776846.html