首页 > 开发 > CSS > 正文

用CSS3实现网页文本禁止复制的CSS代码

2024-07-11 09:01:40
字体:
来源:转载
供稿:网友

武林网(www.vevb.com)文章简介:用CSS3实现网页文本禁止复制的CSS代码.

实例代码1:

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>Demo1</title>
<style>
.text{-moz-user-select:none;-webkit-user-select:none}
</style>
</head>
<body>
<div class="text">css3html5</div>
</body>
</html>

示例代码2

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>Demo2</title>
<style>
.text{-moz-user-select:none;-webkit-user-select:none}
</style>
</head>
<body>
<div class="text" onselectstart="return false;">css3html5</div>
</body>
</html>

 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表