You don't need to put any space in empty table cell, but if you want it to look the same as nonempty table cell, you'd have to define empty cell with CSS in your html head section or in an external css file.
<style type="text/css">
table {empty-cells: show; }
</style>