|
Posted by sdf on 12/06/07 14:30
I'm trying to create a table of form input text cells, like this:
<form>
<table>
<thead>
<tr>
<th>First Column</th>
<th>Second Column</th>
</tr>
</thead>
<tbody>
<tr>
<td><input type="text" name="r1c1" /></td>
<td><input type="text" name="r1c2" /></td>
</tr>
<tr>
<td><input type="text" name="r2c1" /></td>
<td><input type="text" name="r2c2" /></td>
</tr>
</tbody>
</table>
</form>
</p>
Is there a way the text input window can be defined to fill the cell
area no matter
what size the table is? I could define input's size attribute, I
tihnk, if the table
were of a set size, but the table size can vary.
Thanks.
Navigation:
[Reply to this message]
|