Posted by Bruce C. Miller on 02/13/07 20:11
Take a look at this html page:
<html>
<body>
<TABLE border=1 WIDTH="100%">
<TR>
<TD WIDTH="1">1</TD>
<TD WIDTH="1">2</TD>
<TD>333</TD>
<TD>444</TD>
</TR>
<TR>
<TD COLSPAN="4">hhhhhhhhhhhhhhhffffffffffffffffffffffffffhhhhhhh</
TD>
</TR>
</TABLE>
</body>
</HTML>
If I pull that up in FF it looks like I want it to (the first and
second columns are small), but in IE it expands those columns (it
ignores the width=1). How do I tell IE to not automatically make those
columns whatever size it wants? It seems to have something to do with
the length of content in the COLSPAN-ed row below it, which is pretty
stupid.
[Back to original message]
|