Last updated: 2026-09-12
<label>The LABEL Element
The <label> element defines a caption for a form control. The for attribute links it to the control's id; clicking the label focuses/activates the control, improving accessibility and touch experience.
| Category | Forms |
|---|---|
| Content Model | Phrasing content (no nested <label>) |
| Allowed Parents | Any element that accepts phrasing content |
| Content Tag | Yes — requires closing </label> tag |
| Status | Standard |
📝 Syntax
<label for="username">Username:</label>
<input type="text" id="username">
⚙️ Attributes
This element supports the global attributes plus the following:
| Attribute | Value | Description |
|---|---|---|
for | Element ID | The ID of the associated form control. |
▶ Example
Edit the code below and see the live result in the playground:
🌐 Browser Support
| Browser | |||||
|---|---|---|---|---|---|
| <label> | ✓ v1 | ✓ v12 | ✓ v1 | ✓ v1 | ✓ v1 |
| Supported in all major browsers | |||||