Created
February 23, 2018 11:24
-
-
Save juice49/b7069fdcde36d9e59e9342433f4cde63 to your computer and use it in GitHub Desktop.
CSS intrinsic ratio with custom properties
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
.u-ratio | |
--ratioX 1 | |
--ratioY 1 | |
position relative | |
&:before | |
display block | |
padding-top calc(var(--ratioY) / var(--ratioX) * 100%) | |
content '' | |
.u-ratio__content | |
position absolute | |
top 0 | |
right @top | |
bottom @top | |
left @top |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment