I have this HTML:
<div class="title_right mid_center top_menu">
<a class="btn btn-app" href="/Home/ComoFunciona">
<a class="btn btn-app" href="/Home/Tarifas">
<a class="btn btn-app" href="/Home/Contacto">
<a class="btn btn-app" href="/Security/Account">
</div>
The CSS is:
.page-title .title_right {
width: 55%;
float: left;
display: block;
}
.mid_center {
width: 370px;
margin: 0 auto;
text-align: center;
padding: 10px 20px;
}
div.top_menu {
height: 167px;
vertical-align: middle;
}
How can I center those buttons vertically? I don't want to patch it using padding.