gpt4 book ai didi

html - Flexbox 内容没有通过链接和图像均匀分布

转载 作者:行者123 更新时间:2023-11-28 00:53:55 24 4
gpt4 key购买 nike

我正在使用 flex 构建页脚。我希望页脚占网站宽度的 60% 并居中,这样效果很好。当我将内容添加到文本、链接和图像链接的页脚并尝试对齐空间时,它无法正常工作并且页脚右侧有很多额外的空白区域。如何删除它?

Footer

CSS

    .site-wide-footer {
display: flex;
flex-wrap: wrap;
width: 60%;
height: auto;
border: 2px solid black;
border-radius: 24px;
color: white;
background-color: black;
margin: auto;
justify-content: space-between;
align-items: center;
}

HTML

<footer>
<div class="site-wide-footer">
<p>&copy; 2018 copyright</p>
<p><a href="store.html" class="button-footer"> &diams;STORE</a></p>
<p><a href="about-us.html" class="button-footer">&diams;ABOUT US</a></p>
<p><a href="sitemap.xml" class="button-footer">&diams;SITEMAP</a></p>
<div class="social-footer">
<p><a href="discord url">
<img src="images/Discord-Logo-White.png" alt="Discord Logo"
class="discord-footer" onmouseover="hover(this);"
onmouseout="unhover(this);"></a>
<a href="facebook url/"><img
src="images/facebook-icon.png" alt="Facebook Icon" class="facebook-
footer"></a></p>
</div>
</div>
</footer>

最佳答案

使用 justify-content: space-evenly; 怎么样?它还将确保子元素仍然居中,即使它被换行到下一行也是如此。

关于html - Flexbox 内容没有通过链接和图像均匀分布,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53075486/

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