- Does it output grid-template-areas?
- Yes — the tool emits both grid-template-columns/rows values and a named grid-template-areas layout you can copy together.
- Can I mix fixed and fractional columns?
- Yes — use px, rem, fr, or minmax() per column. The tool renders a preview so you can see how columns respond to width changes.
- What about auto-fit and auto-fill?
- Both supported. Toggle the dropdown to insert `repeat(auto-fit, minmax(...))` — useful for responsive card grids.
- Is the output compatible with Tailwind?
- Tailwind's arbitrary value syntax (`grid-cols-[200px_1fr_200px]`) can express the same grid. The generator has a Tailwind copy mode.