Last updated: 2026-09-12
<button>The BUTTON Element
The <button> element creates a clickable button. Unlike <input type="button">, it can contain arbitrary HTML (text, icons, images). The default type is submit.
| Category | Forms |
|---|---|
| Content Model | Phrasing content (no interactive content) |
| Allowed Parents | Any element that accepts phrasing content |
| Content Tag | Yes — requires closing </button> tag |
| Status | Standard |
📝 Syntax
<button type="button">Button text</button>
⚙️ Attributes
This element supports the global attributes plus the following:
| Attribute | Value | Description |
|---|---|---|
type | Keyword | The behavior type of the button.
|
name | Text | Button name, submitted with the form. |
value | Text | The value submitted with the button. |
disabled | Boolean | Disables the button. |
form | Form ID | Associates the button with a form (can be outside it). |
▶ Example
Edit the code below and see the live result in the playground:
🌐 Browser Support
| Browser | |||||
|---|---|---|---|---|---|
| <button> | ✓ v1 | ✓ v12 | ✓ v1 | ✓ v1 | ✓ v1 |
| Supported in all major browsers | |||||
Tip: Set type="button" for buttons outside forms, otherwise clicking may unexpectedly submit.