Skip to content

Instantly share code, notes, and snippets.

@cereme
Created April 26, 2021 09:02
Show Gist options
  • Save cereme/b78350e1b42abab6731b600b2059aaa7 to your computer and use it in GitHub Desktop.
Save cereme/b78350e1b42abab6731b600b2059aaa7 to your computer and use it in GitHub Desktop.
1:1 aspect ratio image
div.thum {
position: relative;
width: 100%;
padding-top: 100%; /* initial ratio of 1:1*/
}
div.thum > img {
width: 100%
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment