Some browsers will not show a table cell border or background if their is no actual content in the cell. You will need to set the following style to display cell formatting no matter if their is content or not.
<style>
.mytable td {
empty-cells:show;
}
</style>
0 Comments.