Netscape 4 Tabling

admin

Administrator
Staff member
I'm trying to create a table with 1 row and 2 columns. The second cell needs to be only as large as required to fit its contents while the first cell should expand to fit the remaining width of the window.<br />
<br />
Specifying the first cell with width="100%" (and not specifying any width for the 2nd cell) achieves this effect in Mozilla. Netscape 4, unfortunately, has some issues with this implementation. The 1st cell expands to most of the window width, but the 2nd cell is not large enough to completely hold its contents. It just cuts off the far right edge.<br />
<br />
Is there a way to achieve this effect in Netscape 4?<!--content-->Post your code. I see no such problems in this example:<table border><br />
<tr><br />
<td width=100%>&nbsp;</td><br />
<td><img src=http://www.webdeveloper.com/forum/archive/index.php/"lilguy2.gif"></td><br />
</tr><br />
</table><!--content-->
 
Back
Top