gpt4 book ai didi

html - 如何在动态 img 标签中添加边框?

转载 作者:太空宇宙 更新时间:2023-11-03 22:45:16 25 4
gpt4 key购买 nike

我需要在我的 img 标签上添加边框。这是我的 HTML。

<div class="col-md-12">
<div class="row col-md-6">
<img class="img-responsive center-block" src="{{design.img_url_front}}" border="5">
</div>
<div class="row col-md-6">
<img class="img-responsive center-block" src="{{design.img_url_back}}">
</div>
</div>

我也在 CSS 中尝试过

img {
border: 5px;
}

仍然没有运气。 enter image description here

如您所见,我需要蓝色部分周围的边框。我怎样才能让它发挥作用?请帮忙。

最佳答案

border添加到类.img-responsive .center-block

.img-responsive .center-block{
border: 5px solid #000;
}

关于html - 如何在动态 img 标签中添加边框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42267811/

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