Skip to content

Instantly share code, notes, and snippets.

@GoodNew5
Last active June 18, 2018 19:10
Show Gist options
  • Save GoodNew5/e9dfb1ff1359b45428e712f9807bbe30 to your computer and use it in GitHub Desktop.
Save GoodNew5/e9dfb1ff1359b45428e712f9807bbe30 to your computer and use it in GitHub Desktop.
aspect-ratio.scss
@mixin aspect-ratio($width, $height) {
position: relative;
&:before{
display: block;
content: " ";
width: 100%;
padding-top: ($height / $width) * 100%;
}
}
// example: @include aspect-ratio(1,1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment