在做移动端开发时,发现a标签点击时,背景色会发生变化。当网页在PC端运行时没有该问题发生。
经过上网搜索,找到了解决问题的一行代码。加上此代码后,问题就解决了。
给整个html加上下列标签。
-webkit-tap-highlight-
color
: rgba(
255
,
255
,
255
,
0
);
-webkit-user-select:
none
;
-moz-user-focus:
none
;
-moz-user-select:
none
;
在做移动端开发时,发现a标签点击时,背景色会发生变化。当网页在PC端运行时没有该问题发生。
经过上网搜索,找到了解决问题的一行代码。加上此代码后,问题就解决了。
给整个html加上下列标签。
-webkit-tap-highlight-
color
: rgba(
255
,
255
,
255
,
0
);
-webkit-user-select:
none
;
-moz-user-focus:
none
;
-moz-user-select:
none
;