HTML:
<table width="100%">
<tbody><tr>
<td width="65%" id="body-preview">
<p>Five NBA writers look ahead to see what's in store for the Miami Heat.</p>
</td>
<td id="side-preview">
<img src="http://a.espncdn.com/photo/2011/0707/nba_g_heatbig3_sy_576.jpg" alt="Nba_g_heatbig3_sy_576">
</td>
</tr>
</tbody></table>
CSS:
#body-preview, #side-preview {
vertical-align: top;
}
#body-preview object {
max-width: 100%;
}
#side-preview img {
max-width: 100%;
}
The above HTML/CSS render as expected on chrome:

But on Firefox 3, I see this:

Whats the issue here? I was in the impression that max-width is supported by Firefox.
Thanks.
max-widthinstead of just plainwidth? It's going to be relative to its container (td#side-preview), which will always be a specific width, due to the set width of the other td in the row. – Nightfirecat Jul 11 '11 at 17:57