<FIELDSET> Tag & its Attribute
HTML Tag <FIELDSET>
<FIELDSET> Groups related form elements.
Attribute of <FIELDSET> Tag
CLASS
Indicates which style class applies to the <FIELDSET> element.
<FIELDSET CLASS="dkm">
Group Rates</FIELDSET>
Possible Values
Any Class name.
ID
Assigns a unique ID selector to an instance of the <FIELDSET> tag. When you then assign a style to that ID selector, it affects only that one instance of the <FIELDSET> tag.
<FIELDSET ID="dkm">now!</FIELDSET>
Possible Values
Any ID name.
STYLE
Specifies Style Sheet commands that apply to the contents within the <FIELDSET> tags.
<FIELDSET STYLE="background: red">
Possible Values
CSS Property with value.
TITLE
Specifies text assigned to the tag. You might use this attribute for context-sensitive help within the document. Browsers may use this to show tool tips over the font text.
<FIELDSET TITLE="Personal data fields">
Possible Values
Any Text Meassge.