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 Quote Link to comment 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 ..... Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.