通过CSS让html网页中的内容不可选

*{
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;
}

通过CSS让html网页中的内容不可选

原文地址:https://www.cnblogs.com/lr393993507/p/5231882.html