Created
June 4, 2019 13:26
-
-
Save nathobson/57f2c1a49d8ae2aa1037316268d55a9d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/************************************************************** | |
-> Usage: @include aspect-ratio(16, 9); | |
**************************************************************/ | |
@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; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment