Scroll Behavior
Set scroll behavior
Syntax
visual="scroll-behavior:[value]"Values
| Value | CSS Output | Description |
|---|---|---|
auto | scroll-behavior: auto | Instant scroll |
smooth | scroll-behavior: smooth | Smooth 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>