#How to fill in grid
8 messages · Page 1 of 1 (latest)
did you try flex={1} on the middle col ?
As in something like this?
<Grid>
<GridCol span={4}/>
<GridCol span={4} />
<GridCol span={4}/>
<GridCol span={4} offset={4}/>
</Grid>
height: 100%?
Facing similar issue
Tried flex={1}, didn't work.
<Grid.Col span={{ base: 12, md: 12, lg: 4 }} flex={1}>
Using SimpleGrid makes(stretches) all columns to same height and solves the issue. But I want to do the same using Grid, as my columns are not supposed to have same width.
Any other recommendations ?
@scenic arrow
Were you able to solve this ?
@prisma atlas
Hi Jon,
flex={1} didn't work do you have any other recommendation?
Thanks
@strange path
Hi Gary
span={{ base: 12, md: 12, lg: 4 }}
style={{ height: "100%" }}
>```
height: 100%, didn't work
Any other recommendations ?
Thanks