gpt4 book ai didi

html - 如何使用 HTML 和 CSS 居中对齐社交媒体标签

转载 作者:行者123 更新时间:2023-11-28 07:12:02 25 4
gpt4 key购买 nike

嗨,我有一个问题,每次我尝试居中对齐我的社交媒体图片时,它们都会以水平列出的方式放置

这是图片的html代码

<div class="socialMediaIcon">
<a href="http://twitter.com/nafis985">
<img src="img/twitter.png" alt="Twitter Logo">
</a>
<a href="http://facebook.com/nafis.rahman3">
<img src="img/facebook.png" alt="Facebook Logo">
</a>
</div>

我试图将其居中的 CSS 是这个

.socialMediaIcon img {
width: 80px;
display: block;
margin: 0 auto;
}

最佳答案

.socialMediaIcon li {
display: inline-block;
}
ul {
list-style: none;
}
.socialMediaIcon li a {
display: inline-block;
}
.socialMediaIcon {
text-align: center;
}
<div class="socialMediaIcon">
<ul>
<li>
<a href="http://twitter.com/nafis985">
<img src="img/twitter.png" alt="Twitter Logo">
</a>
</li>
<li>
<a href="http://facebook.com/nafis.rahman3">
<img src="img/facebook.png" alt="Facebook Logo">
</a>
</li>
</ul>
</div>

关于html - 如何使用 HTML 和 CSS 居中对齐社交媒体标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32582061/

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