My lacking skills of CSS is giving me a headache. As presented in this picture below, captured from firebug:
Always set your height to cells, not rows.
.v-table-table th,
.v-table-table td{
height: 55px;
/* min-height: 55px; EDITED */
}
will do (min-height
alone doesn't work).
Edit: As djsadinoff wrote, min-height doesn't work everywhere. IE8 and IE9 interpret min-height
but it is not the norm for other browsers.