Components
Tabs.
Beta — usable, but the API may still change.
Horizontal tabs switch between views of the same object without leaving the page. Use them for parallel sections of one record — never as primary navigation between different parts of the product.
Anatomy
A tablist, one selected tab, and a single visible panel.
Accessibility
Tabs are a keyboard pattern first, a visual one second.
role="tablist"Wraps the row of tabs; labelled with aria-label or aria-labelledby.role="tab"Each tab; the selected one carries aria-selected="true".role="tabpanel"The content region, tied to its tab via aria-controls / aria-labelledby.Arrow keysLeft / Right move between tabs; Home / End jump to first / last.Tab keyMoves focus out of the tablist into the active panel — not between tabs.