First of all: tables, not my design, my apologies.
We have this website where the products on sale are being displayed in a table-layout. The website is already live, but it appears that it hasn't been tested thoroughly enough. The developer is on holidays, so I have to fix it. Problem lies in the box model interpretation, here an example:
Chrome rendering:

Firefox rendering with firebug overlay:

What's happening is that Chrome adds the padding to the height of the td (height: 55px + padding-top: 5px + padding bottom: 10px = 70px), while Firefox keeps the given height and adds the padding on the inside. I thought that the box model issue was an IE thing, but alas.
However, the crappy part is that I can't seem to fix it. The td has a colspan="2", which I think meddles with the css.
td.productFooter {
background-color: #C4BFB9;
height: 55px;
padding-bottom: 10px;
padding-top: 5px;
}
I've tried to change the display to inline-block (and a few other options), this sets the height properly, but then I lose my background-color (defaults back to the background-color of the table itself). If I set display: block, the height good, but the background only colours the first cell, it ignores the colspan="2".
According to MDN -moz-box-sizing: content-box; should fix it, but that doesn't do anything at all.
Does anyone have an idea how to fix this?