作者:df0134330 | 来源:互联网 | 2020-11-22 01:48
通过css实现页面文字不能被选中
(推荐教程:CSS教程)
.cannotselect {
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
css介绍
user-select
说明
控制选取能否被选择.
该特性是非标准的,请尽量不要在生产环境中使用它!
Formal syntax: none | text | all | element
none:元素内的文字及其子元素将不会被选中
text:用户可以选中文字
all:在一个HTML编辑器中,当双击子元素或者上下文时,那么包含该子元素的最顶层元素也会被选中。
element:火狐和IE中有效. Enables selection to start within the element; however, the selection will be contained by the bounds of that element.
浏览器兼容性
以上就是css实现禁止页面文字被选中功能的详细内容,更多请关注 第一PHP社区 其它相关文章!