Heim >Web-Frontend >HTML-Tutorial >css3实现的文本无法选中效果_html/css_WEB-ITnose
css3实现的文本无法选中效果:
在实际应用中可能有这样的需求,那就是设置指定元素中的文本不可以选中。
css3中指定属性可以实现此功能,下面就通过代码实例介绍一下如何实现此功能。
代码如下:
<!DOCTYPE html><html><head><meta charset=" utf-8"><meta name="author" content="http://www.softwhy.com/" /><title>蚂蚁部落</title><style type="text/css"> div{ -moz-user-select:none; -khtml-user-select:none; -webkit-user-select:none; -o-user-select:none; -ms-user-select:none; user-select:none; background:#CCC; font-size:12px; text-align:center; width:300px; height:150px;} </style> </head> <body> <div>蚂蚁部落欢迎您</div></body> </html>
原文地址是:http://www.softwhy.com/forum.php?mod=viewthread&tid=15482
更多内容可以参阅:http://www.softwhy.com/divcss/