总有一些项目要用pc端的ui组件应用到手机端,会出现很多莫名其妙的的问题
今天在做element checkbox的时候,就会出现一个蓝色的背景框
类似于这样
原因是因为 {cursor: pointer}
需要在
html,
body {
-webkit-font-smoothing: antialiased; //<-CSS3中用于消除锯齿的属性
-webkit-tap-highlight-color: transparent // <- 这一行
}
记录一下