HTML fieldset form Attribute
THE WORLD'S LARGEST WEB DEVELOPER SITE

HTML <fieldset> form Attribute

❮ HTML <fieldset> tag

Example

A <fieldset> element located outside a form (but still a part of the form):

<form action="/action_page.php" method="get" id="form1">
  What is your favorite color? <input type="text" name="fav_color"><br>
  <input type="submit">
</form>

<fieldset form="form1">
  Name: <input type="text" name="username"><br>
  Email: <input type="text" name="usermail"><br>
</fieldset>
Try it Yourself »

Definition and Usage

The form attribute specifies one or more forms the fieldset belongs to.


Browser Support

Attribute
form Not supported Not supported Not supported Not supported Not supported

Note: The form attribute was supported in Opera 12 and earlier versions, but support was removed in version 15.


Differences Between HTML 4.01 and HTML5

The form attribute is new in HTML5.


Syntax

<fieldset form="form_id">

Attribute Values

Value Description
form_id Specifies the form element the <fieldset> element belongs to. The value of this attribute must be the id attribute of a <form> element in the same document.

❮ HTML <fieldset> tag