您的位置:首页 > Web前端

前端的小玩意(3)禁止元素被选中

2016-06-21 09:55 302 查看
(28)禁止元素被选中

在css的样式表里,添加这样属性(可兼容所有浏览器)

{
-moz-user-select: -moz-none;
-khtml-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}

关于IE10的:
http://ie.microsoft.com/testdrive/HTML5/msUserSelect/
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: