Skip to content

Mui:Breakpoints

Default breakpoints

Each breakpoint (a key) matches with a fixed screen width (a value):

  • xs - extra-small: 0px
  • sm - small: 600px
  • md - medium: 900px
  • lg - large: 1200px
  • xl - extra-large: 1536px

특정 Breakpoint 에서 출력 제한

<Box sx={{ display: { xs: 'block', md:'none' } }}>
   {children}
</Box>

See also

Favorite site