gpt4 book ai didi

css - 添加填充到 :before pseudo-element in css

转载 作者:技术小花猫 更新时间:2023-10-29 11:15:28 25 4
gpt4 key购买 nike

有人知道如何在 :before 伪元素和内容实际开始的位置之间添加填充吗?

<ul>
<li><strong>Name Surname</strong></li>
<li>+27.082.555.4155</li>
</ul>

我只希望第一个 li 有一个要点,并且只有它有一个 strong 元素。

我已经正确地使用了:

.fr_contactInformation ul li strong:before
{
content:url(/App_Themes/2011/images/hm_listImage.gif);
}

.fr_contactInformation ul li strong
{
/*Here is where I am going wrong*/
padding-left: 50px;
}

谢谢大家!

最佳答案

你可以在 before 中放置 padding 以在它和元素之间留出空间

.fr_contactInformation ul li strong:before
{
content:url(/App_Themes/2011/images/hm_listImage.gif);
padding-left:50px;
}

关于css - 添加填充到 :before pseudo-element in css,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5102191/

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