Skip to content

Instantly share code, notes, and snippets.

@Quinten
Created February 8, 2016 13:20
Show Gist options
  • Save Quinten/2e1f141a7a79010d7595 to your computer and use it in GitHub Desktop.
Save Quinten/2e1f141a7a79010d7595 to your computer and use it in GitHub Desktop.
Centered in a square regardless of width
.product-image {
height: 0;
display: block;
position: relative;
z-index: 1;
overflow: hidden;
padding-bottom: 100%;
img {
display: block;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
height: auto;
max-width: 100%;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment