dadamssg Posted May 11, 2009 Share Posted May 11, 2009 i have a table and i'm trying to display a bottom border from every table cell. here is the html <table border="0"> <tr><td class=tablew> </td><td class="tablecw"> </td></tr> <tr><td class=tablew> </td><td class="tablecw"> </td></tr> <tr><td class=tablew> </td><td class="tablecw"> </td></tr> <tr><td class=tablew> </td><td class="tablecw"> </td></tr> <tr><td class=tablew> </td><td class="tablecw"> </td></tr> <tr><td class=tablew> </td><td class="tablecw"> </td></tr> <tr><td class=tablew> </td><td class="tablecw"> </td></tr> <tr><td class=tablend> </td><td> </td></tr> </table> and the css table { clear: left; width: 590px; } .tablew { width: 90px; height: 80px; border-bottom: 2px solid #640E27; } .tablecw { border-bottom: 2px solid #640E27;; } .tablend { height: 60px; } it displays correctly in firefox but not in ie Link to comment https://forums.phpfreaks.com/topic/157708-border-bottom-2px-solid-not-working-for-ie/ Share on other sites More sharing options...
sKunKbad Posted May 12, 2009 Share Posted May 12, 2009 You might have to have some other type of layout for IE to render it right. Width, height ..... Link to comment https://forums.phpfreaks.com/topic/157708-border-bottom-2px-solid-not-working-for-ie/#findComment-832154 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.