-
-
Save kobitoDevelopment/38ff3317764496d000e2fc5415b30fa5 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
| .grid { | |
| --border-width: 1px; | |
| display: grid; | |
| grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr)); | |
| gap: var(--border-width); | |
| max-width: 840px; | |
| margin-inline: auto; | |
| margin-top: 120px; | |
| overflow: clip; | |
| } | |
| ._item { | |
| box-shadow: 0 0 0 var(--border-width); | |
| background-color: #ddd; | |
| } |
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
| <div class="grid"> | |
| <p class="_item">Item 1</p> | |
| <p class="_item">Item 2</p> | |
| <p class="_item">Item 3</p> | |
| <p class="_item">Item 4</p> | |
| <p class="_item">Item 5</p> | |
| <p class="_item">Item 6</p> | |
| <p class="_item">Item 7</p> | |
| <p class="_item">Item 8</p> | |
| <p class="_item">Item 9</p> | |
| <p class="_item">Item 10</p> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment