Last active
June 18, 2021 16:46
-
-
Save fgeierst/6465ad7a6cc8857fa3d7413fab57d323 to your computer and use it in GitHub Desktop.
CSS grid: responsive center container
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
.wrapper { | |
display: grid; | |
grid-template-columns: 1fr minmax(auto, 20em) 1fr; | |
} | |
.wrapper > * { | |
grid-column: 2 / -2; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment