Table borders not visible in IE6 and IE7
Posted under Webmaster. Viewed 36 times.
Created on March 6, 2010. Last modified on March 13, 2010.
Created on March 6, 2010. Last modified on March 13, 2010.
When 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; }