Hi,
I would like to write something beside the table, but it displayed in the next line and I don't want that. How?
<table border="1" cellpadding="0" cellspacing="0">
<tr><td width=37 align=right>
<input type="text" size="5" name="t2" value="aaa">
</td></tr>
</table>test
Thx
JoeUse a table inside a table
<table border="0" width="100%">
<tr>
<td width="50%">
<!--table 2-->
<table border="1" cellpadding="0" cellspacing="0">
<tr>
<td width="37" align="right">
<input type="text" size="5" name="t2" value="aaa">
</td>
</tr>
</table>
</td>
<td width="50%">
<!--text-->
put the text in here
</td>
</tr>
</table>
I would like to write something beside the table, but it displayed in the next line and I don't want that. How?
<table border="1" cellpadding="0" cellspacing="0">
<tr><td width=37 align=right>
<input type="text" size="5" name="t2" value="aaa">
</td></tr>
</table>test
Thx
JoeUse a table inside a table
<table border="0" width="100%">
<tr>
<td width="50%">
<!--table 2-->
<table border="1" cellpadding="0" cellspacing="0">
<tr>
<td width="37" align="right">
<input type="text" size="5" name="t2" value="aaa">
</td>
</tr>
</table>
</td>
<td width="50%">
<!--text-->
put the text in here
</td>
</tr>
</table>