css - Icons after link: Break with last word -
how can make icons after link stick last word:
div { background: #aaa; width: 120px; }
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css" rel="stylesheet"/> <div> <span><a href="#">many words here in text breakwiththeicons</a><i class="fa fa-heart"></i><i class="fa fa-music"></i> </span> </div>
html
<div> <span><a href="#">many words here in text <br>breakwiththeicons</a> <i class="fa fa-heart"></i><i class="fa fa-music"></i> </span> </div>
css
div { background: #aaa; width: 120px; display: flex; } { white-space: nowrap; }
Comments
Post a Comment