Hi guys.
I have a problem with the <form> tag.
I cannot figure out, how to keep my style.
Either I have this
Then I have a space between the two tables.
When I put the form into the <td> like this:
Then the "valign=middle" options is ignored and my input fields are on top of the table cell...
What can I do?
Look forward to your answers,
regards, Thomas
I have a problem with the <form> tag.
I cannot figure out, how to keep my style.
Either I have this
| Code: |
| <form action="script.php" method="POST">
<table> <tr> <td valign=middle><input type="text" name="input"> <input type="submit" value="Send"></td> </tr> </table> </form> <table> <!-- here another table with some content //--> |
Then I have a space between the two tables.
When I put the form into the <td> like this:
| Code: |
|
<table> <tr> <td valign=middle><form action="script.php" method="POST"><input type="text" name="input"> <input type="submit" value="Send"></form></td> </tr> </table> </form> <table> <!-- here another table with some content //--> |
Then the "valign=middle" options is ignored and my input fields are on top of the table cell...
What can I do?
Look forward to your answers,
regards, Thomas
