gpt4 book ai didi

css - 如何覆盖子元素上的 "-moz-user-select: none;"?

转载 作者:技术小花猫 更新时间:2023-10-29 10:29:01 25 4
gpt4 key购买 nike

问题 CSS rule to disable text selection highlighting 展示了如何阻止元素上的文本选择。阻止选择后,如何才能允许选择特定的子元素?

例如,

<div class="no-select">
<p>some text that cannot be selected</p>
<p class="select">some text that can be selected</p>
<p>some text that cannot be selected</p>
</div>

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

td.select {
-webkit-touch-callout: all !important;
-webkit-user-select: all !important;
-khtml-user-select: all !important;
-moz-user-select: all !important;
-ms-user-select: all !important;
user-select: all !important;
}

上面的 .no-select 规则有效,但我对 .select 规则的尝试无效。执行此操作的正确方法是什么?

最佳答案

尝试 -moz-user-select: text 而不是 all

作为 future 的引用,每当关注 CSS 规则的可能值时,请查看 MDN 等网站.

Hereuser-select 的 MDN 链接。

关于css - 如何覆盖子元素上的 "-moz-user-select: none;"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16600479/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com