Recipe
Form Field Grouping with fieldset and legend
Group related form controls into logical sections using semantic HTML elements for better accessibility and structure.
Live Example
Usage Notes
fieldsetcreates a semantic grouping container with a default border.legendprovides an accessible label for the entire group.- Screen readers announce the legend when focus enters the fieldset.
- Combine with CSS Grid for responsive multi-column layouts inside each group.