But not only empty-cells: show;
With IE it is not enough!!! (but with Firefox yes, this is class!) You've to specify border-collapse:collapse;
So, if you would not empty cells in your table with InternetExplorer you must write in the CSS something like this:
table{
border-collapse:collapse;
empty-cells: show;
}