Created
August 8, 2014 11:58
-
-
Save voronoy/17f1d24460a201dd0ef5 to your computer and use it in GitHub Desktop.
center and crop image
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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