Skip to content

Instantly share code, notes, and snippets.

@sagiavinash
Created April 28, 2015 17:17
Show Gist options
  • Save sagiavinash/176b2d5e54dea5966b5e to your computer and use it in GitHub Desktop.
Save sagiavinash/176b2d5e54dea5966b5e to your computer and use it in GitHub Desktop.
image centering with "fit" configuration
/* Solution 1 (best) */
.wrap{
position:relative;
}
img{
position:abosulute;
top:0;
right:0;
bottom:0;
left:0;
margin:auto;
}
/* Solution 2 */
.wrap{
height:20px;
}
.wrap:after{ /* (or) wrap span{ */
display:inline-block;
line-height:20px;
}
img{
line-height:20px;
vertical-align:middle;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment