I'm trying to vertical align text on a bootstrap navbar item. The text is wrapped on two lines. Its no problem to align a single line text but it gets much more difficult to vertical-align when its on two lines. I cant use line-height are there any alternatives? I havent seen any good solutions on wrapped text, many solutions doesn't take into account multiple lines of text.
HTML code
<ul class="nav navbar-nav">
<li class="dropdown">
<a href="http://localhost/cll/?page_id=39">SHORT SINGLE LINE</a>
</li>
<li class="dropdown">
<a href="http://localhost/cll/?page_id=39">VERY LONG TEXT, WRAPPED TEXT</a>
</li>
</ul>
CSS code
.navbar-nav > li > a
{
height: 58px;
line-height: 19px;
padding-top: 10px;
text-align: center;
}