*{
margin: 0;
padding: 0;
// 盒子模型
box-sizing: border-box;
}
a{
text-decoration: none;
// 去除掉 移动端下的a标签的点击高亮
-webkit-tap-highLight-color:transparent;
// 让a标签的字体颜色和普通的div一样 会继承 不再是蓝色
color: inherit;
}
2021-08-16 08:04:13
*{
margin: 0;
padding: 0;
// 盒子模型
box-sizing: border-box;
}
a{
text-decoration: none;
// 去除掉 移动端下的a标签的点击高亮
-webkit-tap-highLight-color:transparent;
// 让a标签的字体颜色和普通的div一样 会继承 不再是蓝色
color: inherit;
}