show/hide this revision's text 2 Added preview. Can I actually input raw HTML?

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>
show/hide this revision's text 1

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

Example:

td { 
 border: 1px solid red; 
}
table {
 border-collapse: collapse;
}