css设置文字不可选择

html-css032

css设置文字不可选择,第1张

body{

-webkit-user-select:none

-moz-user-select:none

-ms-user-select:none

user-select:none

}

根据自己的需求,添加给合适的类或标签,建议全部4行全部写,保证最大化兼容各类浏览器

-webkit-user-select: none

只有WebKit内核(Safari、Chrome)支持,CSS世界唯一的解决方法。

只有Webkit有禁止选择的属性

CSS代码中加

*{

moz-user-select: -moz-none

-moz-user-select: none

-o-user-select:none

-khtml-user-select:none

-webkit-user-select:none

-ms-user-select:none

user-select:none

}