100字范文,内容丰富有趣,生活中的好帮手!
100字范文 > 禁止文字选中 css

禁止文字选中 css

时间:2024-03-25 19:58:02

相关推荐

禁止文字选中 css

可以设置 你需要禁止选中文字区域的 css。如:

代码如下:

.table {

text-align: center;

vertical-align:middle;

height: 39px;

overflow: hidden;

moz-user-select: -moz-none;

-moz-user-select: none;

-o-user-select:none;

-khtml-user-select:none; /* you could also put this in a class */

-webkit-user-select:none;/* and add the CSS class here instead */

-ms-user-select:none;

user-select:none;/**禁止选中文字*/

}

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。