Friday January 31, 2003
[HTML] Fieldset and Legend I was reminded today of the <fieldset> and <legend> tags in HTML (BTW, they also work in XHTML). Basically, they are used to draw and label a box around input elements. Here's an example:
<form action="">
<div>
<fieldset>
<legend>Name Information</legend>
<label for="firstName">First Name:</label>
<input type="text" name="firstName" id="firstName" value="" /><br />
<label for="lastName">Last Name:</label>
<input type="text" name="lastName" id="lastName" value="" /><br />
</fieldset>
<fieldset>
<legend>Address Information</legend>
<label for="address">Address:</label>
<input type="text" name="address" id="address" value="" /><br />
<label for="city">City:</label>
<input type="text" name="city" id="city" value="" /><br />
</fieldset>
</div>
</form>
I added a little CSS for the fieldset and legend tags, and you end up with this:
Pretty cool eh? The labels end up in the text boxes (on some browsers) courtesy of the the label.js script. Posted in The Web at Jan 31 2003, 11:47:45 AM MST 1 Comment
Matt Raible is a Web Architect who enjoys developing applications with open source technologies. Contact me for rates.
Search This Site
Recent Entries
- What's Next
- Jack's Mohawk
- LinkedIn Cuts 10% (a.k.a. The Journey is Over)
- Happy Birthday Abbie!
- Moving from Spring's XML to Annotations in AppFuse
- Free Maven Training in New Orleans on Election Day
- AppFuse Light ยป AppFuse, Maven Archetypes and Shared Web Assets
- Great Weekend in Montana
- Colorado Software Summit 2008 Wrapup
- RESTful Web Applications with Subbu Allamaraju
Posted by Brian Burke on January 31, 2003 at 01:30 PM MST #