HTML <fieldset> disabled Attribute
Example
<form action="action.php">
<fieldset disabled>
...
</fieldset>
</form>
Meaning
This is a Boolean attribute, it sets all form controls that are descendants of the <fieldset>
Standard Syntax
HTML: <fieldset disabled>...</fieldset>
XHTML: <fieldset disabled="disabled">...</fieldset>
Advertisement
Attribute Values
| Value | Description |
|---|---|
| disabled | This is a boolean attribute, the presence of a boolean attribute on an element represents the true value, and the absence of the attribute represents the false value. |