fieldset
The HTML <fieldset> element is usually used within the <form> element. This tag groups related elements in your forms. You can apply a <legend> tag as I have below to the fieldset element to give the fieldset a visible title.
HTML CODE EXAMPLE
<form>
<fieldset style="padding:12px;">
<legend style="color:#06F;">Personal Information</legend>
<p>User Name: <input type="text" name="uname" /></p>
<p>User Email: <input type="text" name="email" /></p>
</fieldset>
</form>
<fieldset style="padding:12px;">
<legend style="color:#06F;">Personal Information</legend>
<p>User Name: <input type="text" name="uname" /></p>
<p>User Email: <input type="text" name="email" /></p>
</fieldset>
</form>
Attributes for this element:
datetime - the date or date-time the text was deleted
Possible Values:"date-time sysntax as defined here"
cite - refer to a URL that explains why the text was deleted
Possible Values: "URL string"
global attributes - global core attributes
See: list of global attributes
Possible Values:"date-time sysntax as defined here"
Possible Values: "URL string"
See: list of global attributes
0 Response to "fieldset"
Post a Comment