gpt4 book ai didi

css - 在具有动态高度的绝对图片下定位div

转载 作者:技术小花猫 更新时间:2023-10-29 11:37:14 26 4
gpt4 key购买 nike

我的问题是将 div 定位在“动态图片”下,并在位于动态图片下的 div 下放置动态内容:

Link to the jsfiddle

准备填写的 jsfiddle css 类:

  1. .下面的图片
  2. .belowBelowPicture

HTML:

    <div id="wallDetailContent">     
<section id="wallDetailMessage" style="width 100%">
<img class="wallDetailPicture" src="http://web.scott.k12.va.us/martha2/dmbtest.gif">
<div style="max-width:70%;">blah gik sig en tur, og købte blah med hjem</div>
</section>
<section class="belowPicture">
<p class="wallByDate"> 20140126220550</p>
<p class="wallByBy"> af &nbsp; </p>
<p class="wallByName"> Anders </p>
</section>
<section class="belowBelowPicture">
content (should be dynamic, able to fill all the height it need downwards.)
</section>
</div>

CSS:

.wallDetailPicture{
top: 5px;
right : 5px;
position: absolute;
display:box;
width:auto;
height:auto;
max-width:30%;
max-height: 200px;
}
.wallByName{
font-weight: bold !important;
color: blue;
display:inline-block !important;
}
.wallByDate{
font-weight: bold !important;
display:inline-block !important;
}
.wallByBy{
display:inline-block !important;
}
.belowPicture{
background:red;
}
.belowBelowPicture{
background:green;

}

目标外观: image of the goal

最佳答案

您可以尽可能多地混合使用相对绝对 定位absolutely position an element with a relativity position element , 但你不能用 absolute 定位做你想做的事情,因为一旦一个元素的位置受到另一个元素的位置的影响,那就是 relative 定位。

编辑:您可以在使用floatclear 后实现您的目标:http://jsfiddle.net/nDvYv/1/

关于css - 在具有动态高度的绝对图片下定位div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21405848/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com