UX Guideline: Navigation — Smooth Scroll. Platform: Web. Description: Anchor links should scroll smoothly to target section. Do: Use scroll-behavior: smooth on html element. Don't: Jump directly without transition. Good Example: html { scroll-behavior: smooth; }. Bad Example: <a href='#section'> without CSS. Severity: High.