CSS user-select 属性

<!DOCTYPE html>
<html>
<head>
<style>
div {
-webkit-user-select: none; /* Safari */
-ms-user-select: none; /* IE 10 and IE 11 */
user-select: none; /* Standard syntax */
}
</style>
</head>
<body>

<h1>user-select 属性</h1>

<div>The text of this div element cannot be selected. If you double-click me, my text will not be highlighted.</div>

</body>
</html>

 

定义和用法

user-select 属性规定是否能选取元素的文本。

在 web 浏览器中,如果您在文本上双击,文本会被选取或高亮显示。此属性用于阻止这种行为。

 

CSS 语法

user-select: auto|none|text|all;

属性值

描述
auto 默认。如果浏览器允许,则可以选择文本。
none 防止文本选取。
text 文本可被用户选取。
all 单击选取文本,而不是双击。
posted @ 2022-03-17 11:05  向前、向前  阅读(150)  评论(0编辑  收藏  举报