1
I’m trying to align vertically to the center, items of my footer, only by the image occupy a height
bigger gets misaligned, how to solve?
<footer class="panel-group panel-footer">
<div class="container">
<div class="row">
<div class="col-md-4">
<p class="text-muted text-center"><b>Entre em contato:</b><br />(99) 99999-9999</p>
</div>
<div class="col-md-4">
<p class="text-muted text-center"><b>Endereço:</b> <br /> Rua tal , 123<br /> Bairro - Cidade - Estado</p>
</div>
<div class="text-muted text-center col-md-4">
<img height="120" src="~/Styles/logo-rodape.jpg" alt="logo" />
</div>
</div>
<div class="row">
<div class="col-md-12">
<p class="text-muted text-center copyright">© Todos os direitos reservados.</p>
</div>
</div>
</div>
</footer>