gpt4 book ai didi

html - 有没有办法在 foreach 循环中使用 css 在图像周围动态绘制圆圈? CSS HTML

转载 作者:行者123 更新时间:2023-12-04 04:02:13 24 4
gpt4 key购买 nike

我有这些图片,想在它周围画圈

所以我想在这些图像周围画圈:

enter image description here

我预期的输出应该如下所示:

enter image description here

到目前为止,我已经有了带有 foreach 循环的代码

<div class="flex">
<div style="margin-left: 8em"></div>
<?php foreach($baby_charts as $chart): ?>
<tr>
<th>
<div class="circle">
<a href="<?php echo base_url(); ?>charts/view/<?php echo $chart['id']; ?>/<?php echo $this->uri->segment(3); ?> ">
<img class="img-tooth" src="<?php echo base_url(); ?>assets/images/babyteeth/upper/<?php echo $chart['img_tooth'] ?>">
</a>
</div>
</th>
</tr>
<?php endforeach; ?>
</div>

最佳答案

您可以通过以下样式实现此目的。我只是删除了您的 PHP 代码,因为它在这里不起作用。所以您也可以使用您的 PHP 代码,它会正常工作。

.circle{
width: 60px;
height: 60px;
border: 2px solid red;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
padding: 10px;
}

.circle a{
display: inline-block;
}

.circle .img-tooth{
max-width: 100%;
}
<div class="flex">
<div style="margin-left: 8em"></div>

<tr>
<th>
<div class="circle">
<a href="#">
<img class="img-tooth" src="https://placeimg.com/40/40/tech">

</a>
</div>
</th>
</tr>

</div>

关于html - 有没有办法在 foreach 循环中使用 css 在图像周围动态绘制圆圈? CSS HTML,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62914874/

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