Tailwind CSS on GitHub

用户选择

用于控制用户是否可以在元素中选择文本的功能类。

Default class reference

Class
Properties
select-noneuser-select: none;
select-textuser-select: text;
select-alluser-select: all;
select-autouser-select: auto;

禁用文本选择

使用 select-none 来防止选择元素及其子元素中的文本。

This text is not selectable
<div class="select-none ...">
  This text is not selectable
</div>

允许选择文本

使用 select-text 允许选择元素及其子元素中的文本。

This text is selectable
<div class="select-text ...">
  This text is selectable
</div>

一键选择所有文本

使用 select-all 在用户点击时自动选择元素中的所有文本。

Click anywhere in this text to select it all
<div class="select-all ...">
  Click anywhere in this text to select it all
</div>

自动

使用 select-auto 来使用默认的浏览器行为来选择文本。对于撤销其他功能类(如 .select-none)在不同断点的行为时很有用。

This text is selectable
<div class="select-auto ...">
  This text is selectable
</div>

自定义

变体

默认情况下, 针对 user-select 功能类,只生成 responsive 变体。

您可以通过修改您的 tailwind.config.js 文件中的 variants 部分中的 userSelect 属性来控制为 user-select 功能生成哪些变体。

例如,这个配置将生成 hover and focus 变体:

  // tailwind.config.js
  module.exports = {
    variants: {
      extend: {
        // ...
+       userSelect: ['hover', 'focus'],
      }
    }
  }

禁用

如果您不打算在您的项目中使用 user-select 功能,您可以通过在配置文件的 corePlugins 部分将 userSelect property to false in the corePlugins section of your config file:

  // tailwind.config.js
  module.exports = {
    corePlugins: {
      // ...
+     userSelect: false,
    }
  }