快速参考

属性
select-noneuser-select: none;
select-textuser-select: text;
select-alluser-select: all;
select-autouser-select: auto;

基本用法

禁用文本选择

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

尝试选择文本以查看预期行为

The quick brown fox jumps over the lazy dog.
<div class="select-none ...">
  The quick brown fox jumps over the lazy dog.
</div>

允许文本选择

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

尝试选择文本以查看预期行为

The quick brown fox jumps over the lazy dog.
<div class="select-text ...">
  The quick brown fox jumps over the lazy dog.
</div>

一键选中所有文本

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

尝试选择文本以查看预期行为

The quick brown fox jumps over the lazy dog.
<div class="select-all ...">
  The quick brown fox jumps over the lazy dog.
</div>

使用自动选择行为

使用 select-auto 使用默认浏览器行为来选择文本。在不同断点处撤消其他类(如 select-none)时很有用。

尝试选择文本以查看预期行为

The quick brown fox jumps over the lazy dog.
<div class="select-auto ...">
  The quick brown fox jumps over the lazy dog.
</div>

条件应用

悬停、焦点和其他状态

Tailwind 允许您使用变体修饰符在不同状态下有条件地应用实用程序类。例如,使用 hover:select-all 仅在悬停时应用 select-all 实用程序。

<div class="hover:select-all">
  <!-- ... -->
</div>

有关所有可用状态修饰符的完整列表,请查看 悬停、焦点和其它状态 文档。

断点和媒体查询

您还可以使用变体修饰符来定位媒体查询,例如响应式断点、暗模式、prefers-reduced-motion 等等。例如,使用 md:select-all 仅在中等屏幕尺寸及以上时应用 select-all 实用程序。

<div class="md:select-all">
  <!-- ... -->
</div>

要了解更多信息,请查看有关 响应式设计暗模式其他媒体查询修饰符 的文档。