1
我想在每個列表項後添加一個僞元素。僞對齊::在多行列表項後
問題是我每列表項有2行,我希望僞元素在最長的行之後對齊,這並不總是第二行,之後放置僞元素。
ul {
list-style: none;
}
ul li {
margin-top: 15px;
}
.title {
background-color: #5BC8F7;
}
.title .first {
display: block
}
.title::after {
content: "pseudo";
background-color: #FFBA10;
}
<ul>
<li>
<div class="title"><span class="first">Lorem ipsum dolor </span> sit amet.</div>
</li>
<li>
<div class="title"><span class="first">Lorem </span>ipsum dolor sit amet.</div>
</li>
</ul>
Here is a codepen with the code above
謝謝您的回答。實際上,它與字符數量無關,但與px中的每行長度無關。有可能一行字符少,同時寬度較高。無論如何,它似乎我不會避免JavaScript。 – anefkapan