The cover of The Complete Idiot's Guide to Create a Web Page The Complete Idiot's HTML Tag Reference

| Index | Previous Tag: <EMBED> | Next Tag: <FONT> |


<FIELDSET>

Creates a group of related form controls.

Support:

HTML StandardInternet ExplorerNetscape Navigator
4.0 and later 4.0 and later Not supported
Notes:
  • 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 StandardInternet ExplorerNetscape 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 StandardInternet ExplorerNetscape 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 StandardInternet ExplorerNetscape 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 StandardInternet ExplorerNetscape Navigator
4.0 and later 4.0 and later Not supported

STYLE = "Text"
The style or styles to use with the tag.

Support:

HTML StandardInternet ExplorerNetscape 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>
How It Looks:
Which of the following best describes your current salary level:
    Below the poverty line
    Living wage
    Comfy
    DINK (Double Income, No Kids)
    Rockefellerish

| Index | Previous Tag: <EMBED> | Next Tag: <FONT> |