JavaDude32
Programmer
This is not sizing correctly for me, the idea is:
-------------------------------------------------------
| Field1 | F2 | Field 3 |
-------------------------------------------------------
Instead the browser renders the Student Name cell as the longest cell in the table instead of allocating unused space for the Courses. Can anyone please tell me what's wrong with this:
-------------------------------------------------------
| Field1 | F2 | Field 3 |
-------------------------------------------------------
Instead the browser renders the Student Name cell as the longest cell in the table instead of allocating unused space for the Courses. Can anyone please tell me what's wrong with this:
Code:
<html>
<body>
<table width="100%" height="50%" border=1>
<tr>
<td width="150px" height="25px">Field 1</td>
<td width="100px" height="25px">F2</td>
<td width="100%" height="25px">Field 3</td>
</tr>
<tr>
<td width="100%" height="90%"></td>
</tr>
</table>
</body>
</html>