asmith Posted May 2, 2008 Share Posted May 2, 2008 hey guys <table width="500" border="1" cellspacing="0" cellpadding="0" align="center"> <tr><td height="50">A</td><td rowspan="3">LONG TEXT</td> </tr> <tr><td height="50">c</td> </tr> <tr> <td>d</td> </tr></table> that table has 3 TD in left and 1 TD in right. i want to put a large text on the right TD and when it is expanding the table ONLY the lowest TD from left expand too and the height of the 2 others stay still . the above code works well in fore fox and opera ,but it won't work in IE6. IE expand the other TD too. any way i make it right for IE 6? [attachment deleted by admin] Link to comment https://forums.phpfreaks.com/topic/103855-table-expand/ Share on other sites More sharing options...
GameYin Posted May 2, 2008 Share Posted May 2, 2008 Try setting a min-height:; (CSS) Link to comment https://forums.phpfreaks.com/topic/103855-table-expand/#findComment-531623 Share on other sites More sharing options...
asmith Posted May 2, 2008 Author Share Posted May 2, 2008 close one, but nothing changed. i read articles aboutmin and max-height which IE6 and under still do not support. anyway i applied CSS for them like style="min-height or max-height ... " still not holding those 2 td at 50. another idea? Link to comment https://forums.phpfreaks.com/topic/103855-table-expand/#findComment-531627 Share on other sites More sharing options...
GameYin Posted May 2, 2008 Share Posted May 2, 2008 Don't use inline CSS styles. Do <style type="text/css"> table { min-height:; max-height:; } </style> Link to comment https://forums.phpfreaks.com/topic/103855-table-expand/#findComment-531636 Share on other sites More sharing options...
asmith Posted May 2, 2008 Author Share Posted May 2, 2008 no working again, IE6 do not support min-height and max height. i get everything right with ff, and always this IE is big stone in the way! any idea? Link to comment https://forums.phpfreaks.com/topic/103855-table-expand/#findComment-531675 Share on other sites More sharing options...
GameYin Posted May 2, 2008 Share Posted May 2, 2008 Try using conditional if statements. For IE Link to comment https://forums.phpfreaks.com/topic/103855-table-expand/#findComment-531679 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.