HTML <fieldset> Tag
Description:
The <fieldset> tag is used for grouping related form elements. By using the <fieldset> tag and the legend tag, you can make your forms much easier to understand for your users.
Specific Attributes:
| Attribute | Definition |
| align |
Specifies the alignment.
-Deprecated- |
Other Attributes:
| Attribute | Definition |
| dir |
Specifies the text direction for the content in
an element.
|
| class | Specifies a classname for an element. |
| id | Specifies a unique id for an element. |
| lang | Specifies a language code for the content in an element. |
| title | Specifies a title to associate with the element. Many browsers will display this when the cursor hovers over the element (similar to a "tool tip"). |
| style | Specifies an inline style for an element. |
| accesskey | Specifies a keyboard shortcut to access an element. |
Example Code:
<form>
<fieldset>
<legend>Personal Information:</legend>
Name: <input type="text" size="30" /><br />
Email: <input type="text" size="30" /><br />
Date of birth: <input type="text" size="10" />
</fieldset>
</form>