Table borders not visible in IE6 and IE7

Posted under Webmaster.
Created on March 6, 2010. Last modified on February 17, 2011.

designWhen browsing my web site with IE6 and IE7 I noticed that some table borders did not show up while in IE8 and Firefox everything appeared as it should.



Comparing the differences further I noticed that the border only disappeared for empty cells. In order to fix it I could either make sure there are no empty cells in a table or add the following code to my CSS file.

table { border-collapse: collapse; }
td { empty-cells: show; }