I think this is a simple one but I have a row of buttons: one that is just one short word and two that are 3 long words so they run to two lines.
How can I get them to vertically center in the button? I have tried some variations of display:table-cell etc but couldn't get it exactly right.
Some code:
<div id="button_menu">
<ul>
<li class='faq'><a href="#" tabindex="27">FAQs</a></li>
<li class='map'><a href="#" tabindex="28">Interactive Property Map</a></li>
<li class='request'><a href="#" tabindex="29">Request a Presentation</a></li>
</ul>
</div>
Thanks in advance!