1
使用下面的代碼我的文本垂直對齊底部。需要幫助將文本中間與鏈接中的圖標垂直對齊。垂直對齊鏈接中的中間文本和圖像
HTML
<a href="/The-Experience.aspx" class="icon">
<span class="white bold">Learn More</span>
<div class="arrow-white-right"></div>
</a>
CSS
a.icon { line-height:46px; vertical-align:middle; }
.arrow-white-right { display:inline-block; height:46px; width:46px; background:url('/img/icons/arrow-white-glyph.png'); background-repeat:no-repeat; background-position:-50px 0; }
.white { color:#fff; }
.bold {font-weight:bold; }
請問您能提供小提琴嗎? –