CSS如何实现文本禁止被选中

时间:2016-10-12

代码如下:

div{ 
  text-align:center; 
  vertical-align:middle; 
  height:39px; 
  overflow:hidden; 
  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;
}

以上代码可以实现禁止div中的文本被选中。
但是美中不足的是,IE10以下浏览器并不支持此效果。

上一条:css 如何让浮动DIV水平居中 下一条:html 去掉input 获取焦点时的边框

相关文章

最新文章