Skip to content

Instantly share code, notes, and snippets.

@xtrasmal
Created April 9, 2016 13:49
Show Gist options
  • Save xtrasmal/312a3c18e2cb88f2e0f0646eb863af7c to your computer and use it in GitHub Desktop.
Save xtrasmal/312a3c18e2cb88f2e0f0646eb863af7c to your computer and use it in GitHub Desktop.
@mixin aspect-ratio($width, $height) {
position: relative;
&:before{
display: block;
content: " ";
width: 100%;
padding-top: ($height / $width) * 100%;
}
> .content {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
}
// usage ratio
.21-9 {
@include aspect-ratio(21,9);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment