我有一个固定高度和宽度的元素,并希望为它添加位于底部的文本。它可能跨越几行(但小于元素高度),这使得这很困难。
它只需要在某些现代浏览器中工作,例如> = IE8,> = FF3和WebKit。
答案 0 :(得分:2)
<div style="height:100px;border:1px solid #000;position:relative;">
<p style="position:absolute;bottom:0;border:1px solid #f00;">
This text is positioned at the bottom of the containing DIV.
</p>
</div>
应该工作: - )
答案 1 :(得分:0)