Advertisement
Home Open Editor ❯

HTML <fieldset> disabled Attribute

Example

<form action="action.php">
  <fieldset disabled>
    ...
  </fieldset>
</form>

Try this code ❯

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.
Home Open Editor ❯
Advertisement