パディングトップを:: afterに追加して中央にしたいと思っています。しかし、それは起こっていない。 これは私が得るものです:CSSの擬似要素クラスにパディングトップを追加する方法:: after
この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しかし、それを中心にする方法。余分なパディングを使わずに? –
OPに 'content:url()'があるので 'content: '''を見逃してはいけません –
私の更新の回答を確認してください – LKG