If you set the border-collapse property to collapse, IE7 will show empty cells. It also collapses the borders though so this might not be 100% what you want
CSS:
td {
border: 1px solid red;
}
table {
border-collapse: collapse;
}
Example HTML Document:
<html>
<head>
<title>Border-collapse Test</title>
<style type="text/css">
td {
border: 1px solid red;
}
table {
border-collapse: collapse;
}
</style>
</head>
</body>
<table>
<tr><td></td><td>test</td><td>test</td></tr>
<tr><td>test</td><td></td><td>test</td></tr>
<tr><td>test</td><td></td><td>test</td></tr>
<tr><td>test</td><td></td><td /></tr>
</table>
</body>
</html>
