我想將padding top添加到::之後並且希望使其成爲中心。但沒有發生。 這就是我得到:如何在CSS僞元素類中添加填充頂部::之後
使用該CSS後:
.list-unstyled li::after {
content: url(images/heartborder.png)
text-align:center;
padding-top: 30px;
}
,這是我的html代碼:
<li>
<div class="col span-1-of-3 box">
<span class="icon-small">
<i class="fa fa-eye" aria-hidden="true"></i>
<div class="details">
<h5 class="heading">View/Edit Profile</h5>
<p>You can view or edit your profile from here. Phone no., address, other information etc. etc.</p>
</div>
</span>
</div>
</li>
Thnaks @lokesh但如何使它在中心。沒有使用填充左? –
沒有錯過'content:'''因爲OP有'content:url()' –
檢查我的更新答案 – LKG