How to Show Empty Table Cells in IE and Firefox

Just use something like this in your CSS styes:

table {
empty-cells:show;
border-collapse:collapse;
}

empty-cells works in Firefox, and border-collapse unintuitively works in IE to not collapse the cells.

Comments are closed.