Skip to content

Instantly share code, notes, and snippets.

@voronoy
Created August 8, 2014 11:58
Show Gist options
  • Save voronoy/17f1d24460a201dd0ef5 to your computer and use it in GitHub Desktop.
Save voronoy/17f1d24460a201dd0ef5 to your computer and use it in GitHub Desktop.
center and crop image
div
{
width: 200px;
height: 200px;
overflow: hidden;
margin: 10px;
position: relative;
}
img {
position:absolute;
left: -100%;
right: -100%;
top: -100%;
bottom: -100%;
margin: auto;
min-height: 100%;
min-width: 100%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment