fieldset

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>
 

Personal InformationUser Name: 
User Email: 


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

Event handlers for this element:

global event handlers - global event handler attributes
See: list of global event handlers


0 Response to "fieldset"

Post a Comment