I need to control the height of a table row--I have tried setting the height of the cells, but I'm hitting a brick wall. See demo.
tr.fixedRow,
tr.fixedRow td.fixedCell {
height: 50px;
overflow: hidden; }
I know that I could change the display
of some things to block
but doing so generally messes up the table in a bad way--I'm working with a rather complicated table that interacts with other tables nearby and needs to line up pixel-perfectly, so generally, changing the display
and then trying to make it look like a table again with CSS isn't a good solution for me, because it won't match up. I need it to stay a table.
I also want to avoid doing this:
<td><div>
... cell content...
</div></td>
Which seems like terrible form. Surely there is a CSS only solution to something so simple?