styled-css-grid icon indicating copy to clipboard operation
styled-css-grid copied to clipboard

How do you do a nested grid

Open adamjw3 opened this issue 5 years ago • 1 comments
trafficstars

  <Grid columns={"1"} justifyContent="center" rowGap="40px">
        <Cell>
            <Grid columns="5">
<Cell></Cell>
<Cell></Cell>
<Cell></Cell>
<Cell></Cell>
<Cell></Cell>
           </Grid>
</Cell>
<Cell></Cell>
.....
</Grid>

The 5 columsn nested doesn't work

adamjw3 avatar Jun 02 '20 15:06 adamjw3

Nested Grid also not working for me in Firefox only

<Grid columns={6}>
            <Cell width={3}>
                   <Grid columns="repeat(3, 280px)" >
                     // doing a map over some cells 
                          <Cell ><Cell />
                       </Grid >
             </Cell>
  <Cell width={2}>
 </Cell>
            <Cell width={1}>
 </Cell>
                      </Grid >

murffious avatar Sep 23 '20 21:09 murffious