Created
February 8, 2016 13:20
-
-
Save Quinten/2e1f141a7a79010d7595 to your computer and use it in GitHub Desktop.
Centered in a square regardless of width
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
.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