0

Can you help me understaing why the white shirts images go next line and not below the blue ones?

Material UI Grid list

I'm using material ui for reactjs:

<Grid item xs={12} md={6}>
    <GridList cellHeight={100} cols={4} rows={2}>
        <GridListTile rows={2} cols={2}>
            <img src="https://..." />
        </GridListTile>
        <GridListTile>
            <img src="https://..." />
        </GridListTile>
        <GridListTile>
            <img src="https://..." />
        </GridListTile>
        <GridListTile>
            <img src="https://..." />
        </GridListTile>
        <GridListTile>
            <img src="https://..." />
        </GridListTile>
    </GridList>
</Grid>

What am I doing wrong?

EDIT: for clearness this is the searched result:

wanted result

And this is the code snippet:

https://codesandbox.io/embed/material-ui-drawer-demo-3txbo

Olivier Tassinari
  • 8,238
  • 4
  • 23
  • 23
Jumpa
  • 4,319
  • 11
  • 52
  • 100

0 Answers0