Table/Button Position

liunx

Guest
<form><br />
<table><br />
</table><br />
<br />
add submit button<br />
<br />
</form><br />
<br />
When I try to add the button, rather than appearing below the (100% width) table, it comes up aligned to the top right corner.<br />
<br />
I'm assuming I've missed a tag somewhere but can't see it.<br />
<br />
Is this a common error. If so, what are the usual causes.<br />
<br />
Don't tell me to use a validator as they seem to hate my crappy HTML code.<br />
<br />
Cheers.<br />
<br />
Alan<!--content-->Just offering a solution, not really answering your questions, but what I would do is add a row to your table & put the button there. That should solve your placement problem.<!--content-->You haven't missed a tag; what you've missed is the fact that table and input are inline elements. Put a <br> between them and see how that works for ya, to paraphrase Dr. Phil.<!--content-->Much better idea.<!--content-->
 
Back
Top