gpt4 book ai didi

css - div 中的中心列表

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

我试图将我的列表与 div 中的图像居中。这就是我得到的(图标太小而且没有居中)。

Icons to small and wont center

这是我得到的 css 和 html

       <div id="social">

<ul>
<li><img src="img/footertwitter.png" alt="placeholder+image"></li>
<li><img src="img/footerfacebook.png" alt="placeholder+image"></li>
<li><img src="img/footeremail.png" alt="placeholder+image"></li>
</ul>

</div>


#social {
margin: 0 auto;
text-align: center;
width: 90%;
max-width: 1140px;
position: relative;
}

#social ul {
/*margin: 0 0 3em 0!important;*/
padding: 0!important;

}

#social ul li {
list-style-type: none;
display: inline-block;
margin-left: 1.5em;
margin-right: 1.5em;
}

最佳答案

在您的 ul 规则中,考虑将 display 属性设置为 block 并将边距设置为 auto。如果我正确理解你想要完成的事情,那应该在保留你分配的边距的同时为你集中精力。

更新后的 CSS 看起来像:

#social 
{
margin: 0 auto;
text-align: center;
width: 90%;
max-width: 1140px;
position: relative;
}

#social ul
{
padding: 0;
margin:auto;
display: block;
}

#social ul li
{
list-style-type: none;
display: inline-block;
margin-left: 1.5em;
margin-right: 1.5em;
}

fiddle显示 Action 的变化。希望对您有所帮助。

关于css - div 中的中心列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16670713/

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