Skip to content

Commit f18bab2

Browse files
authored
The original didn't even work because it was missing a semicolon
1 parent f6413c9 commit f18bab2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

snippets/css/layouts/grid-layout.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ tags: layout,grid
88

99
```css
1010
.grid-container {
11-
display: grid
11+
display: grid;
1212
grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
1313
/* Explanation:
1414
- `auto-fit`: Automatically fits as many columns as possible within the container.

0 commit comments

Comments
 (0)