Skip to content

Instantly share code, notes, and snippets.

@amilabandara
Created April 26, 2023 15:49
Show Gist options
  • Save amilabandara/5b8db35c23edcfd0609bb6905e0adcfa to your computer and use it in GitHub Desktop.
Save amilabandara/5b8db35c23edcfd0609bb6905e0adcfa to your computer and use it in GitHub Desktop.
Responsive Aspect ration images
.ratio-image {
position: relative;
height: 0;
padding-bottom: 100%;
img {
max-width: 100%;
position: absolute;
top: 0;
bottom: 0;
left: 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