css 相同的css属性
CSS | 用户选择的属性 (CSS | user-select Property)
Description:
描述:
Astonishingly, web development provides us with a vast amount of features. From editing to styling, everything is covered to the core. Let us take this discussion further, by learning about one another such as feature or property known as user-select property in CSS.
令人惊讶的是,Web开发为我们提供了大量功能。 从编辑到样式,所有内容都覆盖了核心。 让我们通过相互了解,例如在CSS中称为用户选择属性的功能或属性,使讨论更加深入。
The user-select property in CSS is a very fundamental yet crucial property when it comes to making a web page responsive. The property is used to specify whether or not a text of an element can be selected.
在使网页响应时,CSS中的user-select属性是一个非常基本但至关重要的属性。 该属性用于指定是否可以选择元素的文本。
Generally, if you double-click on some text it will be selected or highlighted. This property can be used to prevent this.
通常,如果双击某些文本,它将被选中或突出显示。 此属性可用于防止这种情况。
Syntax:
句法:
Element{
user-select : auto|none|all|text;
}
用户选择属性值 (user-select Property values)
1)用户选择:自动 (1) user-select : auto)
auto is the default value of the user-select property. The core function of this property is that it helps the user select a particular text.
auto是user-select属性的默认值。 此属性的核心功能是帮助用户选择特定的文本。
Syntax:
句法:
Element{
user-select:auto;
}
Example:
例:
<!DOCTYPE html>
<html>
<head>
<style>
div {
user-select: auto;
}
</style>
</head>
<body>
<h1>The user-select Property</h1>
<div>Includehelp is a learning website.</div>
</body>
</html>
Output
输出量
In the above example, the text of div element can be selected.
在上面的示例中, 可以选择 div元素的文本。
2)用户选择:无 (2) user-select : none)
none is another value of the user-select property. It is used to prevent text selection from the user which means that the user can’t select the text on its own when this value is active.
没有一个是user-select属性的另一个值。 它用于防止用户选择文本,这意味着当该值处于活动状态时,用户无法自行选择文本。
Syntax:
句法:
Element{
user-select:none;
}
Example:
例:
<!DOCTYPE html>
<html>
<head>
<style>
div {
user-select: none;
}
</style>
</head>
<body>
<h1>The user-select Property</h1>
<div>Includehelp is a learning website.</div>
</body>
</html>
Output
输出量
In the above example, if you try you cannot select the text inside the div element.
在上面的示例中,如果尝试尝试,则无法选择 div元素内的文本 。
3)用户选择:全部 (3) user-select : all)
all is another value of the user-select property. It is used to select the text with just one click of a mouse instead of a double-click.
all是user-select属性的另一个值。 它用于选择文本,只需单击鼠标一次即可,而不是双击。
Syntax:
句法:
Element{
user-select:all;
}
Example:
例:
<!DOCTYPE html>
<html>
<head>
<style>
div {
user-select: all;
}
</style>
</head>
<body>
<h1>The user-select Property</h1>
<div>Includehelp is a learning website.</div>
</body>
</html>
Output
输出量
In the above example, you can select the text inside the div element in a single click only.
在上面的示例中, 您只需单击一下即可在div元素内选择文本 。
4)用户选择:文字 (4) user-select : text)
text is another value of the user-select property. It is used to enable the user to select the text. It is not used for providing prevent text selection from the user.
text是user-select属性的另一个值。 它用于使用户能够选择文本。 它不能用于防止用户选择文本。
Syntax:
句法:
Element{
user-select:text;
}
Example:
例:
<!DOCTYPE html>
<html>
<head>
<style>
div {
user-select: text;
}
</style>
</head>
<body>
<h1>The user-select Property</h1>
<div>Includehelp is a learning website.</div>
</body>
</html>
Output
输出量
In the above example, if you want to select the text in div element you can select it in a double click.
在上面的示例中,如果要在div元素中选择文本,则可以双击选择它 。
翻译自: https://www.includehelp.com/code-snippets/the-user-select-property-in-css.aspx
css 相同的css属性
本文详细介绍了CSS中的user-select属性,这是一个在制作响应式网页时非常基础且关键的属性。文章解释了如何使用该属性来指定元素的文本是否可被选中,并提供了auto、none、all、text四种属性值的具体用法和示例。

311

被折叠的 条评论
为什么被折叠?



