alt text http://img190.imageshack.us/img190/7514/unbenanntax.jpg
这是我想做的一个Div,其中有一些文字,右下角是一个img. div的高度稳定在24像素,但长度是未知的,并且可以连续多个这样的div.
解决方法
有一些这样做的技巧.最简单的:
<div class="outer"> <img src="...."> </div>
同
div.outer { position: relative; height: 24px; } div.outer img { position: absolute; right: 0; bottom: 0; }
现在把它从正常的流程中解脱出来,这是一个问题,你想要其他内容包装/浮动.在这种情况下,您真的需要知道图像的高度,然后根据您的具体情况应用适当的技巧.
从Making the absolute,relative开始.
例如,如果图像高10像素,可以尝试:
div.outer { height: 24px; } div.outer { float: right; margin-top: 14px; }
当然,14px来自于24px – 10px.我不知道这是否会满足你想要实现的目标.