What is the HTML <fieldset> tag?

The <fieldset> tag in HTML5 groups several related components within an HTML form. It creates a box around the child elements.

Syntax

<fieldset>
  // HTML form components
</fieldset>

Attributes

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.

Example

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.

Disabled fieldset

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.

Supported Browsers

  • Google Chrome
  • Internet Explorer
  • Firefox
  • Opera
  • Safari

Free Resources