Noticed this with IE 6.0 the other day. The cells don't seem to grow and expand correctly anymore. Is this some thing new or something I never noticed.
In sample below the red side of the table should be the same height as the blue side. It displays correctly in Firefox but in IE the red side will not grow with the large content on the right. Any work arounds for this?
In sample below the red side of the table should be the same height as the blue side. It displays correctly in Firefox but in IE the red side will not grow with the large content on the right. Any work arounds for this?
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "[URL unfurl="true"]http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">[/URL]
<html xmlns="[URL unfurl="true"]http://www.w3.org/1999/xhtml"[/URL] >
<head>
<title>Untitled Page</title>
</head>
<body>
<table height="100%" cellpadding="0" cellspacing="0" >
<tr height="100%">
<td width="200">
<table height="100%" width="100%" cellpadding="0" cellspacing="0" >
<tr height="100%" >
<td bgcolor="red" >Red</td>
</tr>
</table>
</td>
<td bgcolor="blue">
<div style="height:2000px" >Blue</div>
</td>
</tr>
</table>
</body>
</html>