我正在尝试启用IE11中默认禁用的文本的选择/突出显示。我正在使用这个道具打开选择:
-ms-user-select: text;
我也尝试了以下值:
-ms-user-select: element;
-ms-user-select: auto;
没有什么对我有用。不知道什么是启用选择的替代方案?
由于
答案 0 :(得分:1)
尝试一下
-ms-user-select: contain; /*IE,Edge*/
-webkit-user-select: text; /*Webkit*/
-moz-user-select: text; /*Mozilla*/
user-select: all; /*Global, select all with one click*/
这对我有用。我在和https://developer.mozilla.org/en-US/docs/Web/CSS/user-select都使用了IE参考。.注意:元素已更改为包含!
答案 1 :(得分:0)
您是否尝试过!important
-ms-user-select: text !important;