Created
December 1, 2013 15:01
-
-
Save aahan/7735017 to your computer and use it in GitHub Desktop.
Crop image using CSS
This file contains hidden or 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
/* | |
* Crop image using CSS | |
*/ | |
#top-stories figure, | |
#latest-stories figure { | |
display: block; | |
overflow: hidden; | |
width: 81px; | |
} | |
#top-stories figure img, | |
#latest-stories figure img { | |
display: block; | |
height: 81px; | |
margin-left: -32px; /* Crop from middle on x-axis (32px + 80px + 32px) */ | |
min-width: 144px; | |
width: 144px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment