Last updated: 2026-09-12
<optgroup>The OPTGROUP Element
Groups options inside a select, shown as a non-selectable group label.
| Category | Forms |
|---|---|
| Content Model | Flow content |
| Allowed Parents | Any element that accepts flow content |
| Content Tag | Yes — requires closing </optgroup> tag |
| Status | Standard |
📝 Syntax
<select>
<optgroup label="Fruits">
<option>Apple</option>
</optgroup>
</select>
⚙️ Attributes
This element supports the global attributes plus the following:
| Attribute | Value | Description |
|---|---|---|
label | The group's label text (required). | |
disabled | Disables all options in the group. |
▶ Example
Edit the code below and see the live result in the playground:
🌐 Browser Support
| Browser | |||||
|---|---|---|---|---|---|
| <optgroup> | ✓ v1 | ✓ v12 | ✓ v1 | ✓ v1 | ✓ v1 |
| Supported in all major browsers | |||||
Tip: optgroup cannot be nested, and its options must stay inside it.
🏷️ Related Tags
💡 Related Cases
More case studies coming soon — check back later.