Skip to content

Instantly share code, notes, and snippets.

@juice49
Created February 23, 2018 11:24
Show Gist options
  • Save juice49/b7069fdcde36d9e59e9342433f4cde63 to your computer and use it in GitHub Desktop.
Save juice49/b7069fdcde36d9e59e9342433f4cde63 to your computer and use it in GitHub Desktop.
CSS intrinsic ratio with custom properties
.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