The <fieldset>
tag in HTML5 groups several related components within an HTML form. It creates a box around the child elements.
<fieldset>
// HTML form components
</fieldset>
The <fieldset>
tag has the following attributes:
disabled
: Specifies that the group of related form elements are disabled and won’t be submitted along with the form.form
: Specifies which form the fieldset element belongs to. It stores the value of the ID attribute of the form.name
: Specifies the name associated with the group.In this example, we use a fieldset
tag to make two forms. Since the fieldset
is not disabled, you will be able to interact with the form.
Try interacting with the form.
You will not be able to interact with the form in the example below because the fieldset
tag is disabled.