- Can tabs work without JavaScript?
- Yes — via radio inputs with `display: none` and `:checked ~ .panel` sibling selectors. The tool generates both JS and pure-CSS versions.
- Is the output accessible?
- ARIA roles (tablist, tab, tabpanel) and aria-selected state changes are included. Keyboard navigation (Arrow keys) requires the JS version; CSS-only supports Tab but not arrow keys.
- How many tabs can I have?
- No hard limit, but 5–6 is the usability sweet spot. Past that, consider a dropdown or secondary navigation.
- Does it support vertical tabs?
- Yes — toggle layout to vertical. Tabs stack on the left, panels on the right. Good for settings pages and long-form content.