Container API
Importação
import Container from '@mui/material/Container';
// ou
import { Container } from '@mui/material';
Nome do componente
The nameMuiContainer
can be used when providing default props or style overrides in the theme.Propriedades
Propriedades do componente nativo também estão disponíveis.
Nome | Tipo | Padrão | Descrição |
---|---|---|---|
classes | object | Sobrescreve ou extende os estilos aplicados para o componente. Veja a API CSS abaixo para maiores detalhes. | |
component | elementType | The component used for the root node. Either a string to use a HTML element or a component. | |
disableGutters | bool | false | If true , the left and right padding is removed. |
fixed | bool | false | Set the max-width to match the min-width of the current breakpoint. This is useful if you'd prefer to design for a fixed set of sizes instead of trying to accommodate a fully fluid viewport. It's fluid by default. |
maxWidth | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | false | string | Determine the max-width of the container. The container width grows with the size of the screen. Set to false to disable maxWidth . | |
sx | Array<func | object | bool> | func | object | The system prop that allows defining system overrides as well as additional CSS styles. See the `sx` page for more details. |
O
ref
é encaminhado para o elemento raiz.CSS
Nome da regra | Classe global | Descrição |
---|---|---|
root | .MuiContainer-root | Estilos aplicados ao elemento raiz. |
disableGutters | .MuiContainer-disableGutters | Estilos aplicados para o elemento raiz se disableGutters={true} . |
fixed | .MuiContainer-fixed | Estilos aplicados para o elemento raiz se fixed={true} . |
maxWidthXs | .MuiContainer-maxWidthXs | Estilos aplicados para o elemento raiz se maxWidth="xs" . |
maxWidthSm | .MuiContainer-maxWidthSm | Estilos aplicados para o elemento raiz se maxWidth="sm" . |
maxWidthMd | .MuiContainer-maxWidthMd | Estilos aplicados para o elemento raiz se maxWidth="md" . |
maxWidthLg | .MuiContainer-maxWidthLg | Estilos aplicados para o elemento raiz se maxWidth="lg" . |
maxWidthXl | .MuiContainer-maxWidthXl | Estilos aplicados para o elemento raiz se maxWidth="xl" . |
Você pode sobrescrever o estilo do componente usando uma dessas opções de customização:
- With a global class name.
- With a rule name as part of the component's
styleOverrides
property in a custom theme.