document template border of data grid

1
I have a data-grid in document template , and when there are 2 sequential rows having an empty data in some columns(attributes) , It shows them as merging cells (i.e hiding the border of the cells), how can I fix it?
asked
1 answers
4

If you want empty cells to have border, you need to use the border collapse or empty cells property:

.showcells {
border-collapse: separate;
empty-cells : show;
}

http://www.w3schools.com/css/prtabempty-cells.asp http://www.w3schools.com/css/prtabborder-collapse.asp

answered