Dieter Rausch
01-02-2004, 10:47 PM
Hi CF users,
I have created a table with 6 rows and 4 column having various labels and text fields. Below is part of the code:
<table "border="0" cellspacing="0" width="100%" height="100%">
<tr style="font-family: Verdana, Tahoma, Arial; font-size: x-small">
<td>Cap.(R):</td>
<td align="right"><input type="text" name="riskCapital" size=6></td>
<td>Entry:</td>
<td align="right"><input type="text" name="tradeEntry" size="5"></td>
</tr>
etc., etc.
</table>
This table has to fit into an area with a height slightly smaller than that of the table. The text sizes of the labels are not the problem, i.e <td>Cap.(R):</td> is OK.
It the height of the input text fields, i.e <td align="right"><input type="text" name="tradeEntry" size="5"></td> which prevents the table from fitting into the allocated space.
How can I reduce the height of the input text fields so that the table will fit. Should I perhaps not be using a table at all?
Any help will be appreciated.
Dieter
I have created a table with 6 rows and 4 column having various labels and text fields. Below is part of the code:
<table "border="0" cellspacing="0" width="100%" height="100%">
<tr style="font-family: Verdana, Tahoma, Arial; font-size: x-small">
<td>Cap.(R):</td>
<td align="right"><input type="text" name="riskCapital" size=6></td>
<td>Entry:</td>
<td align="right"><input type="text" name="tradeEntry" size="5"></td>
</tr>
etc., etc.
</table>
This table has to fit into an area with a height slightly smaller than that of the table. The text sizes of the labels are not the problem, i.e <td>Cap.(R):</td> is OK.
It the height of the input text fields, i.e <td align="right"><input type="text" name="tradeEntry" size="5"></td> which prevents the table from fitting into the allocated space.
How can I reduce the height of the input text fields so that the table will fit. Should I perhaps not be using a table at all?
Any help will be appreciated.
Dieter