What is the recomended method for Laying out HTML forms?
- From: "Owen Brunker" <brunkero.nospam@xxxxxxxxxxxxxxxxxx>
- Date: Thu, 28 Feb 2008 13:43:54 GMT
DIVs decidedly makes life easier in most layouts. But laying out forms is
still time consuming. I'm currently using the following technique to layout
the labels
<div style="clear: both;">
<div style="float: left; etc">
<label> ...</label>
</div>
<div style="float: left; etc">
<input>
</div>
</div>
I dont see any real difference between what I have done above when compared
with the following
<table>
<tr>
<td><label>...</label></td>
<td><input></td>
</tr>
</table>
Am I on the right track with this?
What are others doing in this area?
Thanks
Owen Brunker
.
- Follow-Ups:
- Re: What is the recomended method for Laying out HTML forms?
- From: Jonathan N. Little
- Re: What is the recomended method for Laying out HTML forms?
- From: C A Upsdell
- Re: What is the recomended method for Laying out HTML forms?
- From: Els
- Re: What is the recomended method for Laying out HTML forms?
- Prev by Date: Re: Why doesn't Safari display bottom of my page?
- Next by Date: Re: Microsoft just fined US$ 1.35 billion by European antitrust regulator
- Previous by thread: Clip/move a div
- Next by thread: Re: What is the recomended method for Laying out HTML forms?
- Index(es):
Relevant Pages
|