- 此bounty已结束**。此问题的答案可获得+50声望奖励。奖励宽限期将在12小时后结束。Hello World正在查找规范答案:动态方式下使用网格或灵活框方法的解决方案是有帮助的
我有一个电路块像一个图表作为背景图像。
我需要在各自的地方放置单独的图像。
- 当前结果:**
.container {
background-image: url('https://i.stack.imgur.com/AfygH.png');
height: 500px;
background-position: center;
background-repeat: no-repeat;
background-size: contain;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
}
.coil, .evaporator, .compressor {
display: flex;
align-items: center;
justify-content: center;
}
.evaporator {
width: 80px;
height: 80px;
margin-top: 70px;
margin-left: 90px;
}
.coil {
width: 150px;
height: 150px;
}
.compressor {
width: 80px;
height: 80px;
margin-bottom: 40px;
}
<div class="container">
<div class="evaporator">
<img src="https://i.stack.imgur.com/spv58.png" alt="evaporator-image" />
</div>
<div class="coil">
<img src="https://i.stack.imgur.com/SKUms.png" alt="coil-image" />
</div>
<div class="compressor">
<img src="https://i.stack.imgur.com/fzSaH.png" alt="compressor-image" />
</div>
</div>
- 预期结果:**
预期的结果可能是,
尝试的代码,
.coil {
position: absolute;
left: 25%;
top: 55%;
}
但是它没有给出预期的准确结果,使用position:absolute
没有给出响应式设计。
你能帮我在动态的方式实现的结果,如使用网格或flexbox在CSS中?谢谢提前。
5条答案
按热度按时间whlutmcx1#
试试这个:
58wvjzkj2#
作为一个选项。但是,请记住,这是一个硬编码坐标的构造。当您更改带有背景图像的容器的大小时,您还需要更改嵌套元素的位置。
vyswwuz23#
也许吧?
9wbgstp74#
这里是解决方案的flexbox,而不是使它的位置:绝对的要求。
bqucvtff5#
因为它是位图图像,我建议回到每个元素的实际大小,并根据它们的实际大小来定位它们。所有这些都是以像素为单位。如果真的需要调整外部容器的大小,或多或少可以做相同的事情,采取每个元素的百分比,关于大的一个和它们的位置左上角相同的计算...