The HTML <fieldset></fieldset> element is used to group in a web form several controls as well as labels.
Attributes
| Attribute | Value | Description |
|---|---|---|
disabled |
Boolean | If this Boolean attribute is set, the form controls that are its descendant, except descendants of its first optional <legend> element, are disabled. Often browsers cancel out such control and it won't receive any browsing event, like mouse clicks or focus-related ones. (HTML5)
|
form |
id | This attribute has the value of the ID attribute of the <form> element it's related to. Its default value is the ID of the nearest <form> element it is a descendant of. (HTML5)
|
name |
name | The name associated with the control. (HTML5) |