[Home]
[Edit this page]
[Recent Changes]
[Special Pages]
[Help]
HTMLSPEC-FIELDSET
Used to group related form input controls into a group or division.
Attributes
None
Code Tip
When specifying a form fieldset, always provide a form legend using the <legend> element so the visitor knows exactly what kinds of data the fieldset contains.
Live Example
HTML Tags Center
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
HTMLSPEC-FIELDSET
Fieldset
UsageUsed to group related form input controls into a group or division.
Attributes
None
Code Tip
When specifying a form fieldset, always provide a form legend using the <legend> element so the visitor knows exactly what kinds of data the fieldset contains.
Live Example
<html> <head><title>Fieldset Form Document Example</title></head> <body> <form method="post" action="http://www.this.com/bin/processForm.php"> <fieldset> <input type="text" name="box1" value="box1"> <input type="text" name="box2" value="box2"> <input type="text" name="box3" value="box3"> </fieldset> </form> </body> </html>
HTML Tags Center
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
