欢迎来到DIVCSS5查找CSS资料与学习DIV CSS布局技术!
  <!DOCTYPEhtml>
 
  <html>
 
  <head>
 
  <metacharset="UTF-8">
 
  <title>css禁止文字被选择</title>
 
  <styletype="text/css">
 
  .m-no-select{
 
  -webkit-touch-callout:none;
 
  /*iOSSafari*/
 
  -webkit-user-select:none;
 
  /*Chrome/Safari/Opera*/
 
  -khtml-user-select:none;
 
  /*Konqueror*/
 
  -moz-user-select:none;
 
  /*Firefox*/
 
  -ms-user-select:none;
 
  /*InternetExplorer/Edge*/
 
  user-select:none;
 
  /*Non-prefixedversion,currently
 
  notsupportedbyanybrowser*/
 
  }
 
  </style>
 
  </head>
 
  <div>可以选择</div>
 
  <div>不可以选择</div>
 
  <body>
 
  <scriptsrc="https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"></script>
 
  <scripttype="text/javascript">
 
  </script>
 
  </body>
 
  </html>








本文转载自中文网
 

如需转载,请注明文章出处和来源网址:http://www.divcss5.com/css3-style/c55479.shtml