Created
January 8, 2018 19:16
-
-
Save justyn-clark/914e1be4f1a643e5763a3b107d2c6327 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
.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