这可能是在这样糟糕的岁月中完成的:
<table style="height: foo;"> <tr><td valign="top">content</td></tr> <tr><td valign="bottom">stuck to the bottom</td></tr> </table>
我可以不采取这种技术吗?
<div id="parent"> <div id="child"> </div> </div>
。
#parent { position:relative; } #child { position:absolute; bottom:0; }