Skip to content

Scroll Behavior

Set scroll behavior

Syntax

visual="scroll-behavior:[value]"

Values

ValueCSS OutputDescription
autoscroll-behavior: autoInstant scroll
smoothscroll-behavior: smoothSmooth scroll

Examples

html
<html visual="scroll-behavior:smooth">Smooth scrolling</html>

Preview

Scroll Behavior

visual="scroll-behavior:smooth" - Smooth or instant scrolling

auto
smooth
View Code
html
<div layout="flex" space="g:medium p:medium" visual="bg:neutral-100 dark:bg:neutral-900 rounded:medium">
  <div space="p:small" visual="bg:primary text:white rounded:small">auto</div>
  <div space="p:small" visual="bg:primary text:white rounded:small">smooth</div>
</div>