Posted by Toby Inkster on 11/14/06 19:15
Dylan Parry wrote:
> It depends really. I can see the cases both for /and/ against. Recently
> I have started to use fieldset/legend/label elements along with CSS to
> style forms, and I think they are slightly more user-friendly, if a bit
> more complicated (at first) than simply bunging the form in a table.
I tend to use something along these lines:
<tr>
<th scope="row"><label for="foo">Foo:</label></th>
<td><input id="foo" name="foo"></td>
</tr>
Often with <fieldset> elements wrapped around the entire table.
--
Toby A Inkster BSc (Hons) ARCS
Contact Me ~ http://tobyinkster.co.uk/contact
[Back to original message]
|