Forum Moderators: not2easy
Is it possible to declare a table(and body/html) height of 100%, and have a td element that stretches to fill remaining space without entering into quirks mode?
(so in quirks mode):
<table height="100%">
<tr>
<td height="50">Stuff</td>
</tr>
<tr>
<td height="*">Stuff</td>
</tr>
</table> I have tried declaring max-height: parameters for all of the static <td>s and this hasn't worked.
the height attribute for tables/td has been depreciated and should no longer be used.
[w3.org...]
look for a css solution to your effort.
you may find what your looking for @
[css-tricks.com...]
I didn't manage to find what I was looking for on the pages that you linked, and the second link was getting a table to 100% (the easy bit :)) not getting a table row (or tbody) to fill the remaining available space.
I did pick up a few useful things from the first link though, so thanks for that :).
Regards,
Readie
Just make the header however high as you need it, and if you need it you can remove the width, centering and borders from that example easy enough.