Thread: CSS form labels
View Single Post
  #2 (permalink)  
Old Dec 11th, 2006, 16:02
Accurax Accurax is offline
Reputable Member
Join Date: May 2006
Location: Northampton, UK
Posts: 399
Thanks: 0
Thanked 0 Times in 0 Posts
Re: CSS form labels

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 ?
Reply With Quote