重複の可能性:
最後の単語で切れるリンク アイコンを追加しますか?
コンテナーに対してテキストが長すぎる場合、最後の単語の後に表示される背景画像だけでなく、最後の単語を新しい行に分割したいと考えています。
問題の画像は次のとおりです。
「も」という言葉が欲しいです。background-image とともに次の行に改行します。
HTMLは次のとおりです。
<ul>
<li><a href="#" class="myIcon">The name of some link goes here</a></li>
<li><a href="#" class="myIcon">The name of some link goes here too.</a></li>
<li><a href="#" class="myIcon">Here is yet another link that could be used</a></li>
<li><a href="#" class="myIcon">This could be a really long link that one could try to use also</a></li>
<li><a href="#">The name of some link goes here.</a></li>
<li><a href="#">The name of some link goes here.</a></li>
<li><a href="#">The name of some link goes here.</a></li>
</ul>
CSSは次のとおりです。
.myIcon:after {
height: 16px;
width: 16px;
display:inline-block;
content:'';
background-image: url("/wps/themes/html/3M.com/images/ui-icons_000000_256x240.png");
vertical-align:middle;
}