gpt4 book ai didi

css - 一行多图 CSS + Div

转载 作者:行者123 更新时间:2023-11-28 17:27:59 25 4
gpt4 key购买 nike

在每张图片周围使用此代码

<div class="side-by-side"> <a href="http://example.com ....>  (include ALL the code for the image here) </div>

这是CSS片段

.side-by-side { float: left; margin-right: 5px }

有效...我的意思是图像在一条线上但不幸的是,图像左对齐,我希望它们一起居中。

最佳答案

将您的图像包裹在一个 div 中并设置 text-align:center; 然后您不需要额外的 div 来包裹您的 a 标签,您可以只为 a 标签本身设置样式。像这样:

<div class="centered-content">
<a href="#" class="side-by-side">
<img src="http://placehold.it/100x100"/>
</a>
<a href="#" class="side-by-side">
<img src="http://placehold.it/100x100"/>
</a>
<a href="#" class="side-by-side">
<img src="http://placehold.it/100x100"/>
</a>
</div>

和CSS:

.centered-content{
text-align:center;
}
.side-by-side{
margin-right:5px;
display:inline-block;
}

关于css - 一行多图 CSS + Div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38624036/

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