Skip to content

Instantly share code, notes, and snippets.

@aahan
Created December 1, 2013 15:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aahan/7735017 to your computer and use it in GitHub Desktop.
Save aahan/7735017 to your computer and use it in GitHub Desktop.
Crop image using CSS
/*
* 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