在我的蓝色框中垂直居中文本的最佳方法是什么?
标记:
<div class="btn-blue">
<span class="icon"></span>
Some awesome text here
</div>
和风格:
.btn-blue {
background-color: #446598;
color: #fff;
display: inline-block;
padding: 0 20px 0 0;
line-height: 0;
}
.btn-blue .icon {
width: 50px;
height: 50px;
display: inline-block;
background-color: #00356b;
margin-right: 10px;
}
这是小提琴 http://jsfiddle.net/fSa6r/
谢谢。