Generally buried in work with deadlines, specifically grappling
with a table whose rows will not even roughly be height evened.
(Know anything about getting a table to be this and nicely enough
cross browser? Have not a clue what I am talking about? Why not?
Are you refusing to imagine my problem? Is the call for a url
welling up in your brain? There is a ruddy great picture of an
item in a left column that spans 7 rows, and the 7 rows of
remaining columns are just very short text and number strings but
the last row of these latter takes up about 3/4 of the space.
Looks ugly while being semantically beautiful.
I tried this and it comes out OK in most browsers, but not Konqueror,
aka Safari, in which the first few rows get their content height and the
last one gets the rest, which sounds like what you're describing.
If you don't know the height of the big item on the left then I don't
know what you can do about that.
Rowspan and colspan make table formatting much more complicated than it
would otherwise be, so it might be more predictable to use nested
tables, and there is an easy solution there if you know the height of
the left item.
Give the first table two cells in one row with the big item on the left
and another table inside the cell on the right with 7 rows. If you know
the height of the item on the left[1], then you can just set the height of
the nested table on the right to that value, and that should get
distributed evenly between the 7 rows.
As far as I know the only reliable way to stretch 7 rows evenly so they
add up to some target height is to put them all in a table and set the
desired total on the table, which is what this approach does.
[1] As a final resort, if you don't know that height, I suppose you could use
JavaScript to read it back and apply it to the nested table but I really don't
like using JS for layout.