I'm trying to figuire out a problem in safari:
The code below contains a table that has three rows. The cell in the second row has a height of 100%, and a green background. How do I get the middle row to actually expand so that the green background fills in the whole area between the top row and the bottom... am I missing something?
<table cellpadding=0 cellspacing=0 height=500 border=1>
<tr>
<td>
asdfsad
</td>
</tr>
<tr>
<td bgcolor=green height="100%">
sd
</td>
</tr>
<tr>
<td>
asdfsd
</td>
</tr>
</table>
The code below contains a table that has three rows. The cell in the second row has a height of 100%, and a green background. How do I get the middle row to actually expand so that the green background fills in the whole area between the top row and the bottom... am I missing something?
<table cellpadding=0 cellspacing=0 height=500 border=1>
<tr>
<td>
asdfsad
</td>
</tr>
<tr>
<td bgcolor=green height="100%">
sd
</td>
</tr>
<tr>
<td>
asdfsd
</td>
</tr>
</table>