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
2 Comments
Search This Site
Recent Entries
- Secure JSON Services with Play Scala and SecureSocial
- My What's New in Spring 3.1 Presentation
- Twitter's Open Source Summit: Bootstrap 2.0 Edition
- Refreshing AppFuse's UI with Twitter Bootstrap
- 2011 - A Year in Review
- Upgrading AppFuse to Spring Security 3.1 and Spring 3.1
- What have I been working on at Taleo?
- Our Engaging Trip to Paris and Antwerp
- My HTML5 with Play Scala, CoffeeScript and Jade Presentation from Devoxx 2011
- Deploying Java and Play Framework Apps to the Cloud with James Ward
Posted by Brian Burke on January 31, 2003 at 02:30 PM MST #
Posted by zzz on November 02, 2011 at 10:15 AM MDT #