How is this possible in MUI4 Grid? If it's impossible in MUI, how about CSS?
This is what I get with the code below. directon="column"
does not help. The Grid items are not fixed. I am looking for a solution that does not involve spreading the items to 3 columns via javascript bec I depend on the responsive breakpoints in Grid i.e. xs, sm, md, lg
<Grid container spacing={1}>
<Grid item xs={4}>1</Grid>
<Grid item xs={4}>2</Grid>
<Grid item xs={4}>3</Grid>
<Grid item xs={4}>4</Grid>
<Grid item xs={4}>5</Grid>
<Grid item xs={4}>6</Grid>
<Grid item xs={4}>7</Grid>
</Grid>