how to align checkboxes

liunx

Guest
Please help me ..<br />
I don't know how to align checkboxes.<br />
I have 9 checkboxes and I want to display them aligned...<br />
meaning, with a nice outline..<br />
<br />
how do I do it?<br />
<br />
I am thinking of aligning it this way:<br />
3 lines, where each line contains 3 checkboxes..<br />
<br />
any help will be appreciated thanks!<!--content-->eh? try tables..<br />
<br />
<br />
<table><br />
<tr><br />
<td><input type=checkbox></td><td>blog</td><br />
</tr><br />
<tr><br />
<td><input type=checkbox></td><td>blog</td><br />
</tr><br />
<tr><br />
<td><input type=checkbox></td><td>blog</td><br />
</tr><br />
</table><!--content-->table code would work:<br />
<br />
<br />
<form action=whatever><br />
<table cellpadding=0 cellspacing=0 border=0><br />
<tr><br />
<td>checkbox here</td>checkbox here</td>checkbox here</td></tr><br />
<tr><td>checkbox here</td>checkbox here</td>checkbox here</td></tr><br />
<tr><td>checkbox here</td>checkbox here</td>checkbox here</td><br />
</tr><br />
</table><br />
</form><!--content-->thanks! it worked..sorry for posting such a newbie question.<!--content-->
 
Back
Top