Css 禁止选中文字

可以通过在CSS中设置user-select属性来实现禁止选中文字,例如:

body {
  -webkit-user-select: none; /* Chrome/Safari/Opera */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently not supported by any browser */
}

这样就可以禁止用户在页面中选中任何文本了。

你可能感兴趣的:(css,前端)