gpt4 book ai didi

php - 从数据库中获取时背景图像重叠?

转载 作者:太空宇宙 更新时间:2023-11-04 01:46:41 26 4
gpt4 key购买 nike

我正在从正在工作的数据库中获取图像,但所有图像都是重叠的。我想一张一张地显示所有图像。你愿意帮我吗?

    .img {
position: relative;
float: left;
width: 300px;
height: 300px;
background-position: 50% 50%;
background-repeat: no-repeat;
background-size: cover;
}

<?php if ($result_related_products->num_rows > 0) { // output data of each row
while($row = $result_related_products->fetch_assoc()) {
$p_img=$row['p_img'];
?>
<div class="img" style="background-image: url('admin/assets/img/products/<?php echo $p_img; ?>')">
<?php }
}
else { echo "0 results"; } ?>

最佳答案

您必须关闭 DIV

</div>

(在你的 while 循环中)

关于php - 从数据库中获取时背景图像重叠?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44355660/

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