Skip to content

Instantly share code, notes, and snippets.

@fdaciuk
Created November 21, 2013 18:01
Show Gist options
  • Save fdaciuk/7586465 to your computer and use it in GitHub Desktop.
Save fdaciuk/7586465 to your computer and use it in GitHub Desktop.
Magia para alinhar imagem na vertical
span {
display: inline-block;
height: 100%;
vertical-align: middle;
}
img {
display: inline-block;
vertical-align: middle;
}
<div>
<span></span>
<img src="http://lorempixel.com/400/300" width="400" height="300" alt="" />
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment