我有一个简单的标记:
<div style="position: relative;">
<img src="http://placehold.it/350x150" style="position: absolute;">
</div>
<img src="http://placehold.it/350x150">
为什么父 div 没有扩大高度?
编辑:
最终的标记是这样的:
<div style="position: relative;">
<img src="http://placehold.it/350x150" style="position: absolute;">
<img src="http://placehold.it/350x150" style="position: absolute; display: none;">
<img src="http://placehold.it/350x150" style="position: absolute; display: none;">
</div>
我正在使用jquery 循环。所以position: absolute
是必要的,并由插件自动添加。