Es verdad, lo estaba aplicando a los enlaces.
Código HTML:
Ver original <img src="http://lorempixel.com/250/100"> <li class="botones-menu"><a href="#">Boton1
</a></li> <li class="botones-menu"><a href="#">Boton2
</a></li> <li class="botones-menu"><a href="#">Boton3
</a></li> <li><input type="text" class="buscador"></li>
Código CSS:
Ver originalheader {
width: 100%;
height: 70px;
background: #111;
display: flex;
justify-content:space-between;
flex-wrap: wrap;
}
img {
width: 250px;
}
ul {
display: flex;
align-items: center; /*centra los botones verticalmente*/
}
ul>li {
list-style: none;
}
a {
text-decoration: none;
color: #fff;
}
.botones-menu {
margin: 10px;
background: #333;
color: #fff;
text-decoration: none;
width: 100px;
height: 35px;
display: flex;
align-items: center; /*Centra verticalmente el texto de los botones*/
justify-content: center; /*Centra horizontalmente el texto de los botones*/
font-size: .9em;
}
.botones-menu:hover {
background: #222;
}
.buscador {
margin-right: 10px;
height: 30px;
}