Last active
February 1, 2018 21:27
-
-
Save perjansson/a026cdac10b664a13a934a197fbac20a 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
ul { | |
list-style: none; | |
display: grid; | |
grid-gap: 0.4rem; | |
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); | |
grid-auto-rows: 28%; | |
grid-auto-flow: dense; | |
} | |
.wide { | |
grid-column: span 2; | |
} | |
.high { | |
grid-row: span 2; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment