Dropdown menus, select inputs, comboboxes, multi-select patterns, and accessible dropdown implementation.
| Options | Pattern | Why |
|---|---|---|
| 2-3 | Radio buttons or segmented control | All options visible |
| 4-7 | Dropdown select | Manageable list |
| 8-15 | Dropdown with search | Finding options quickly |
| 15+ | Combobox (searchable input) | Must be able to search |
| Multi-select needed | Checkbox list or tag input | Clear selection state |
role="listbox" for the options containerrole="option" for each itemaria-selected for current selectionaria-expanded on the trigger