Skip to content

Instantly share code, notes, and snippets.

@justyn-clark
Created January 8, 2018 19:16
Show Gist options
  • Save justyn-clark/914e1be4f1a643e5763a3b107d2c6327 to your computer and use it in GitHub Desktop.
Save justyn-clark/914e1be4f1a643e5763a3b107d2c6327 to your computer and use it in GitHub Desktop.
.aspect-ratio($width, $height) {
position: relative;
&:before {
display: block;
content: '';
width: 100%;
height: 0;
padding-top: ($height / $width) * 100%;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment