gpt4 book ai didi

html - 相对div中的绝对位置图像

转载 作者:行者123 更新时间:2023-11-28 12:32:14 25 4
gpt4 key购买 nike

我想用不同的图像做一个响应式设计,例如:

 <div id="home" class="page"> 
<div id="home_1" class="section"><!-- Page 1 -->
<div id="home_1_1" class="full">
<img src="images/home/home_1/home_1.png" class="full-image"></img>
</div>
</div>
<div id="home_2" class="section"><!-- Page 2 -->
<div id="home_2_1" class="full">
<img src="images/home/home_2/home_2_block1.png" class="full-image"></img>
</div>
<div id="home_2_2" class="full">
<img src="images/home/home_2/home_2_block2.png" class="full-image"></img>
</div>
</div>
<div id="home_3" class="section"><!-- Page 3 -->
<div id="home_3_1" class="full">
<img src="images/home/home_3/home_3_block1.png" class="full-image"></img>
</div>
<div id="home_3_2" class="full">
<img src="images/home/home_3/home_3_block2.png" class="full-image"></img>
</div>
</div>
</div>

home_1home_2home_3 是单独的图像 block 。但是 home_2_1 home_2_2 应该有相同的顶部位置,它们也应该在 home_1 下面。

这是我的CSS:

#home{
width: 100%;
text-wrap: none;
white-space: nowrap;
}
.section{
position: relative;
display: inline-block;
width: 100%;
}

.full{
position: absolute;
top:0;
left:0;
}
.full-image{
width: 100%;
display: block;
}

问题是我只看到一张图片,其他图片并没有漂浮在彼此旁边。我希望有人可以帮助我。

最佳答案

我不太清楚你的意思,但你试过只使用 float 吗?

检查这个 fiddle :http://jsfiddle.net/9Ryby/

.section {
clear: both;
}
.full-image {
width: 50%;
float: left;
}

关于html - 相对div中的绝对位置图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18170790/

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