当我尝试使用鼠标在我的网站上使用Internet Explorer(IE10和IE11)选择文本时,我只是想不通为什么
默认情况下,Ionic被禁用文本选择。我用以下代码覆盖了离子类。
body{
-moz-user-select: text;
-webkit-user-select: text;
-ms-user-select: text;
-o-user-select: text;
user-select: text;
}
它适用于chrome,firefox和opera,但不适用于IE。
有没有人知道如何解决这个问题?我已经找到了类似的问题,但没有答案。
感谢大家的回答