Answers for "how to mentain the ordern of containers in material ui"

0

how to mentain the ordern of containers in material ui

<Grid container spacing={2}>
  <Grid item md={12} lg={4} order={{ md: 1, lg: 1 }}>col 1</Grid>
  <Grid item md={12} lg={4} order={{ md: 3, lg: 2 }}>col 2</Grid>
  <Grid item md={12} lg={4} order={{ md: 2, lg: 3 }}>col 3</Grid>
</Grid>
Posted by: Guest on October-09-2021

Code answers related to "how to mentain the ordern of containers in material ui"

Browse Popular Code Answers by Language