Documentación offline Tailwind CSS main
por @raupulus

scroll-behavior

main Ver versión oficial en línea Licencia MITDescargado el 2026-09-15 Bundle .md (1.3 MB) ↓

En esta página
Clase Propiedades CSS
scroll-auto scroll-behavior: auto;
scroll-smooth scroll-behavior: smooth;

Examples#

Using smooth scrolling#

Use the scroll-smooth utility to enable smooth scrolling within an element:

<!-- [!code classes:scroll-smooth] -->
<html class="scroll-smooth">
  <!-- ... -->
</html>

Setting the scroll-behavior only affects scroll events that are triggered by the browser.

Using normal scrolling#

Use the scroll-auto utility to revert to the default browser behavior for scrolling:

<!-- [!code classes:scroll-auto] -->
<html class="scroll-smooth md:scroll-auto">
  <!-- ... -->
</html>