1、问题描述:
快速点击下拉箭头,旁边的文字变色了,且是块状/长条形,很影响操作体验
image.png
2、解决办法:找到父类选择器(只禁止变色频繁点击的区域),添加如下代码即可。
如果你希望整个页面都禁止变色,可以将如下代码放到当前页面的最外层的父类选择器中即可。
![](https://img.haomeiwen.com/i2364940/8c517766ade31b0f.png)
.parent_section_box{
user-select:none;
-ms-user-select:none;
-moz-user-select:none;
-webkit-user-select:none;
-khtml-user-select:none;
}
网友评论