fieldset

Support

Allows to group thematically related controls and labels.

The fieldset tag is used to group elements with an outline around them, commonly used within the form element. Use it together with the legend element.

Example

<fieldset>
<legend>Personal Information</legend>
<form>
<label for="username">name:</label>
<input type="text" id="username" size="25" />
<label for="password">password:</label>
<input type="text" id="password" size="25" />
</form>
</fieldset>

Preview

Personal Information