personally i tend to use tables to lay forms out, simply because i veiw them as verging on tabular data.
Doing it with
CSS wouldnt be difficult, i should imaging the
html would look something like this:
- Code: Select all
<div id="divform">
<div id="divfieldone">
<div id="field1left">
</div>
<div id="field1right>
</div>
</div>
<div id="divfieldtwo">
<div id="field2left">
</div>
<div id="field2right>
</div>
</div>
<div id="divfieldthree">
<div id="field3left">
</div>
<div id="field3right>
</div>
</div>
</div>
As for the
CSS to get these to lay out like a table........ id have to actually buid it to see ... maybe someone else can help ?