Files
react-test/docs/data/system/grid/GridAutoColumns.tsx.preview

5 lines
256 B
Plaintext
Raw Normal View History

2025-12-12 14:26:25 +09:00
<Box sx={{ display: 'grid', gridAutoColumns: '1fr', gap: 1 }}>
<Item sx={{ gridRow: '1', gridColumn: 'span 2' }}>span 2</Item>
{/* The second non-visible column has width of 1/4 */}
<Item sx={{ gridRow: '1', gridColumn: '4 / 5' }}>4 / 5</Item>
</Box>