PDA

View Full Version : Question: Forms - CSS styles - whitespace management



serazoo
07 Aug 2008, 11:36 AM
Hello all...

I'm working on a form unsing CSS styles...

I'm new using styles...

can someone please give me advice how to manage the whitespace between input boxes using CSS styles...I've spent many hours trying to figure this out...

more space / less space / no space ...


here's a quick look

I would like the input boxes on the right to be on the same level as each of the check boxes.

http://animationzigzag.com/temp.html

cheers
Sandra

Wickham
07 Aug 2008, 02:40 PM
Split each pair into separate td cells:-
<table>
<tr>
<td>Left checkbox 1</td>
<td>Right input box</td>
</tr><tr>
<td>Left checkbox 2</td>
<td>Right input box</td>

etc
</tr></table>

Are you sure you want each item to be a separate form?