Ajustment of a form position within a table cell.

  • Thread starter Thread starter FrontPage
  • Start date Start date
F

FrontPage

I created a login form and put it inside a cell in a table. This form
creates some extra space below it, which occupies the rest of the nesting
cell, and I am unable to get rid of that extra space or even put a cursor in
it. I've tried to adjust the vertical alignment of the cell that nests the
<form> tag, but no luck How do I delete that space so that the cell below
moves up?
Thanks.
 
Hi,
I'd set the form's margins to 0 and stick the form tags outside the table,
eg
<style type="text/css">
form{margin:0;}
</style>
<form.....>
<table....
your form fields
</table>
</form>
 
Back
Top