I noticed a problem with how tables are rendered in IE 6 and 7 B2 when you use a colspan=2. I don't know if this has been metioned before but since it is not fixed in IE6 and even IE7 I thought I would post this hoping to some how reach the MS IE team. If you create a 100% width table with two columns, with the second column being fixed width at like 150 and have a row be colspan=2, for some reason the width=150 isn't being applied to the second column.. see below code. This renders as expected in FireFox, and all other non-IE browsers. <table width="100%" cellpadding="0" cellspacing="0" border="1"> <tr> <td>No Width Specified</td> <td width="150">Fixed at 150</td> </tr> <tr> <td colspan="2">This is test text for the puspose of this demonstration. This is test text for the puspose of this demonstration. </td> </tr> </table> I just want the right column to be fixed, however the colspan is some how messing up the whole table and the column no longer adhears to 150 width. -Mark