Take this web example to your account (it seems the same problem) I have the following CSS on my site (note the space between #head and #body <div>'s ):
#body { display: table; border-spacing: 0; border-collapse: collapse; } #body-row { display: table-row; margin: 0; padding: 0; } .column-left, .column, .column-right { display: table-cell; padding: 0px; border: dotted 2px #89E; } .column-left, .column-right { width: 190px; font-size: .95em; }
However, this still adds a space between the top and bottom of the table. Filling and markup does nothing for this. Advice?
Jonathan
source share