Skip to content

Instantly share code, notes, and snippets.

@pablocattaneo
Last active September 16, 2017 00:15
Show Gist options
  • Save pablocattaneo/b90c2173668d32b6d19f to your computer and use it in GitHub Desktop.
Save pablocattaneo/b90c2173668d32b6d19f to your computer and use it in GitHub Desktop.
vertical center image. Centrar verticalmente una imagen
Impletementado por primera vez en el header de http://localhost/presugym/index.php.
.wrapperLogoHeader a img {
margin: auto;
top: 0;
right: 0;
left: 0;
bottom: 0;
position: absolute;
width: 76%;
}
<div class="col-xs-6 col-sm-2 wrapperLogoHeader">
<a href="index.html">
<img src="images/logo-header.png" alt="">
</a>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment