移动H5页面CSS 样式控制,禁止页面文本复制代码

*{  
	  -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;   
} 
input{  
	-webkit-user-select:auto; /*webkit浏览器*/     
}
textarea{
	-webkit-user-select:auto; /*webkit浏览器*/
}

QQ群:595377655。问题总是能出现并着手解决的地方,欢迎加入。

移动H5页面CSS 样式控制,禁止页面文本复制代码_第1张图片

你可能感兴趣的:(CSS,-,CSS3)