CSS禁止复制页面
2018-01-04 本文已影响0人
web佳
*{
-webkit-touch-callout:none;/*系统默认菜单被禁用*/
-webkit-user-select:none;/*webkit浏览器*/
-khtml-user-select:none;/*早期浏览器*/
-moz-user-select:none;/*火狐*/
-ms-user-select:none;/*IE10*/
user-select:none;
}
/*禁止复制*/