We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
250px
min(250px, 100%)
1 parent debf15d commit f6413c9Copy full SHA for f6413c9
snippets/css/layouts/grid-layout.md
@@ -9,7 +9,7 @@ tags: layout,grid
9
```css
10
.grid-container {
11
display: grid
12
- grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
13
/* Explanation:
14
- `auto-fit`: Automatically fits as many columns as possible within the container.
15
- `minmax(250px, 1fr)`: Defines a minimum column size of 250px and a maximum size of 1fr (fraction of available space).
0 commit comments