📜  html 不选择文本 - CSS 代码示例

📅  最后修改于: 2022-03-11 14:47:48.836000             🧑  作者: Mango

代码示例1
div{
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select:none;
  user-select:none;
  -o-user-select:none;
}