交互
用于控制用户是否可以选择元素中的文本的工具。
¥Basic usage
¥Disabling text selection
使用 select-none
可防止选择元素及其子元素中的文本。
¥Use select-none
to prevent selecting text in an element and its children.
尝试选择文本以查看预期的行为
<div class="select-none ...">
The quick brown fox jumps over the lazy dog.
</div>
¥Allowing text selection
使用 select-text
允许选择元素及其子元素中的文本。
¥Use select-text
to allow selecting text in an element and its children.
尝试选择文本以查看预期的行为
<div class="select-text ...">
The quick brown fox jumps over the lazy dog.
</div>
¥Selecting all text in one click
使用 select-all
在用户单击时自动选择元素中的所有文本。
¥Use select-all
to automatically select all the text in an element when a user clicks.
尝试选择文本以查看预期的行为
<div class="select-all ...">
The quick brown fox jumps over the lazy dog.
</div>
¥Using auto select behaviour
使用 select-auto
以使用默认的浏览器行为来选择文本。对于在不同的断点处撤消其他类(如 select-none
)很有用。
¥Use select-auto
to use the default browser behavior for selecting text. Useful for undoing other classes like select-none
at different breakpoints.
尝试选择文本以查看预期的行为
<div class="select-auto ...">
The quick brown fox jumps over the lazy dog.
</div>
Tailwind 允许你使用变体修饰符在不同状态下有条件地应用工具类。例如,使用hover:select-all
仅在 hover 时应用 select-all
工具。
<div class="hover:select-all">
<!-- ... -->
</div>
有关所有可用状态修饰符的完整列表,请查看悬停、聚焦、以及其他状态 文档。
你还可以使用变体修饰符来定位媒体查询,例如响应式断点、暗黑模式、首选减少运动等。例如,使用 md:select-all
仅在中等屏幕尺寸及以上时应用 select-all
工具。
<div class="md:select-all">
<!-- ... -->
</div>