This tag creates the form equivalent of a dialog box group. That is, the browser displays a box around whatever controls are within the fieldset.
This tag requires the </FIELDSET> end tag.
Attributes:
ALIGN
= "Text"
The alignment of the controls within the fieldset.
Support:
HTML Standard
Internet Explorer
Netscape Navigator
Not supported
Not supported
Not supported
Notes:
Possible values: LEFT, CENTER, RIGHT.
CLASS
= "Text"
The style sheet class used by the tag.
Support:
HTML Standard
Internet Explorer
Netscape Navigator
4.0 and later
4.0 and later
Not supported
Notes:
You can specify two or more classes; be sure to separate each class name with a space.
ID
= "Text"
An alphanumeric string that uniquely identifies the tag.
Support:
HTML Standard
Internet Explorer
Netscape Navigator
4.0 and later
4.0 and later
Not supported
Notes:
Although you can use letters and numbers for the ID, the first character must be a letter.
LANG
= "Text"
The language used by the tag's attribute values and text content.
Support:
HTML Standard
Internet Explorer
Netscape Navigator
4.0 and later
4.0 and later
Not supported
STYLE
= "Text"
The style or styles to use with the tag.
Support:
HTML Standard
Internet Explorer
Netscape Navigator
4.0 and later
4.0 and later
Not supported
Notes:
If you enter multiple style properties, separate each one with a semi-colon (;).
Example:
<FIELDSET>
Which of the following best describes your current salary level:
<UL>
<INPUT TYPE=RADIO NAME="Salary" VALUE="Salary1" CHECKED>Below the poverty line<BR>
<INPUT TYPE=RADIO NAME="Salary" VALUE="Salary2">Living wage<BR>
<INPUT TYPE=RADIO NAME="Salary" VALUE="Salary3">Comfy<BR>
<INPUT TYPE=RADIO NAME="Salary" VALUE="Salary4">DINK (Double Income, No Kids)<BR>
<INPUT TYPE=RADIO NAME="Salary" VALUE="Salary5">Rockefellerish<BR>
</UL>
</FIELDSET>