0

我正在使用 CSS 规则:

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: moz-none;
    -ms-user-select: none;
    user-select: none;
}

这会禁用 div 的选择,例如 Chrome 中的以下 div,但 Firefox 中则没有:

<div class="noselect">
    <span>This text cannot be selected</span>
</div>

我有最新的浏览器版本。可以在这个jsFiddle中找到一个示例。

Firefox 有什么不同?如何禁用那里的选择?

4

2 回答 2

2

对于Firefox:而不是“moz-none”只使用“none”

于 2013-08-07T09:40:29.130 回答
0

还发现,-moz-none而不是moz-none也有效。但是,是的,none甚至更好。

于 2013-08-07T10:27:36.077 回答