我需要将右侧箭头始终保持在标题的右侧,但在某些情况下只有箭头向下。(如果您移动小提琴预览手柄,您可能会看到)。以下是 HTML 结构和使用的 css。
<div class="headline">
<h3>
<a href="#">Bowie comeback reaches number six<span class="arrow"> </span></a>
</h3>
</div>
CSS:
.headline {
padding: 15px 12px 12px;
}
h3 {font-size:30px;}
.arrow{
background: transparent url(http://blog.sameerast.com/wp-content/themes/elements-of-seo_1.4/images/bullet.gif) no-repeat;
display: inline-block;
height: 22px;
margin-left: 5px;
margin-top: 0;
position: relative;
top: 10px;
width: 15px;
}
小提琴:http: //jsfiddle.net/9Mst7/
我有其他方法或最好的方法来赢得这个吗?
更新:当标题出现在第二行时,箭头也应该坐在旁边。