Is there a way to make the height of the reach exactly the bottom of the page? It is hard to judge by using
height:xx%
, and it might
As annoying as it is to use tables for layout, they're still the best way to consistently handle vertical dimensions. The following still displays a few white pixels around the edge of the iframe, and has an extra scrollbar in some versions of Firefox, but is as close as I've been able to achieve:
hello
If you really want to avoid the table elements, you might get some traction out of div tags with display:table
, display:table-row
, and display:table-cell
, but be prepared for even more annoying quirks in certain browsers.