gpt4 book ai didi

html - 添加 margintop 或 bottom 到列表项

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

我有一个包含文本和两个图标图像的列表。文本与图像不对齐,所以我希望能够为链接添加边距。然而,经过至少一个小时的检查我仍然无法让它工作,这是我的代码:

<div class="company-info pull-right">



<ul class="social-header">

<li>Follow Us</li>
<li class="socials"><a href="#" title="follow us on twitter"><i class="twit-icon"></i></a></li>
<li class="socials"><a href="#" title="Folow us on LinkedIn"><i class="linked-icon"></i></a></li>


</ul><!--/social header-->

</div><!--/pull right-->


</div><!--/company info-->

enter image description here

    .social-header{
list-style:none;
}

.social-header li{
display:inline;
}

.social-header li.socials{
margin-top:10px;
}

最佳答案

margin 不会在内联元素上工作。

.social-header li{
display:inline-block;
float: left;
}



.social-header li.socials{
padding-top:10px;
}

关于html - 添加 margintop 或 bottom 到列表项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28459977/

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