Last active
July 11, 2021 00:56
-
-
Save selfagency/2e4f10fe5b9d1e3736503a4a4023945c to your computer and use it in GitHub Desktop.
[grid aspect ratio]
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
#grid { | |
width: 240px; | |
background: grey; | |
} | |
.aspectRatioSizer { | |
display: grid; | |
} | |
.aspectRatioSizer > * { | |
grid-area: 1 / 1 / 2 / 2; | |
} | |
#content { | |
background: green; | |
display: flex; | |
align-items: center; | |
justify-content: center; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment