交互性
用于控制元素滚动行为的实用程序。
使用scroll-smooth
实用程序在元素内启用平滑滚动。
<html class="scroll-smooth">
<!-- ... -->
</html>
Tailwind 允许您使用变体修饰符在不同状态下有条件地应用实用程序类。例如,使用focus:scroll-auto
仅在聚焦时应用scroll-auto
实用程序。
<html class="scroll-smooth focus:scroll-auto">
<!-- ... -->
</html>
有关所有可用状态修饰符的完整列表,请查看悬停、聚焦和其它状态文档。
您还可以使用变体修饰符来针对媒体查询,例如响应式断点、深色模式、 prefers-reduced-motion 等等。例如,使用 md:scroll-auto
仅在中型屏幕尺寸及以上应用 scroll-auto
实用程序。
<html class="scroll-smooth md:scroll-auto">
<!-- ... -->
</html>