我想将我的按钮与父项的右侧对齐。我想知道是否有一个 * 适当 * 的方式来做这件事在MUI。我可以用途:
<Grid container justify="flex-end">
但是那样我就得用另一个<Grid item />了。看起来工作太多了。或者,我最好使用普通的CSS,摆弄float: right,处理元素的明显零高度。
<Grid item />
float: right
6tqwzwtp1#
试试这个
<Grid container justify="flex-end"> <Button>Example</Button> </Grid>
ForwardRef(Grid)的属性justify已弃用。请改用justifyContent,该属性已重命名。
ForwardRef(Grid)
justify
justifyContent
<Grid container justifyContent="flex-end"> <Button>Example</Button> </Grid>
l5tcr1uw2#
如果要对齐<Grid item>内的项目,可使用 Package Box组件,如下所示:
<Grid item>
Box
<Grid container> <Grid item sm={6}> <Box display="flex" justifyContent="flex-end"> <Button>Button Aligned To The Right</Button> </Box> </Grid> </Grid>
有关更多定位选项,请参见docs。
eeq64g8w3#
在MUI v5中,您可以使用Stack在行或列上显示一组组件。Stack是一个弹性框,因此您只需设置justifyContent属性以对齐内部的项目:
Stack
<Stack direction="row" justifyContent="end"> <Button variant="contained">Item 1</Button> </Stack>
ca1c2owp4#
如果您不想使用Grid组件,则必须依赖CSS。但是如果你使用Material-UI,你应该使用JSS(CSS-IN-JS)而不是普通的CSS。
在CSS中,你可以使用这些解决方案中的任何一个,例如,“文本对齐”是最简单的一个。
text-align: right
display: flex
align-content: flex-end
6qfn3psc5#
将长方体构件与柔体一起使用。
<Box display="flex" flexDirection="column" > <... other stuff/> </Box>
您可以了解更多here
cdmah0mi6#
<Toolbar sx={{ display: "flex", justifyContent: "space-between" }}> <Typography sx={{ fontWeight: 600 }}> Recent Repositories </Typography> <Box> {/* <Typography></Typography> */} <Button error>+ New</Button> </Box> </Toolbar>
z2acfund7#
对于最新的material-ui版本5使用justifyContent=“flex-end”或alignContent,这相当于css文本对齐和flex-end=右对齐
<Grid container alignContent="flex-end"> <Button>Example</Button> </Grid> or <Grid item justifyContent="flex-end"> <Button>Example</Button> </Grid>
适用于旧材质-ui版本4
<Grid item justify="flex-end"> <Button>Example</Button> </Grid>
1cklez4t8#
材质UI的网格组件有辅助 prop 来实现这一点。
<Grid align-items-xs-center justify-xs-flex-end> <Button>Click me</Button> </Grid>
你可以在这里找到医生。
8条答案
按热度按时间6tqwzwtp1#
在MUI 5之前:
试试这个
更新MUI 5:(感谢Dipak)
ForwardRef(Grid)
的属性justify
已弃用。请改用justifyContent
,该属性已重命名。更新:最好的解决方案是NearHuscarl或Eduardo奥维耶多布兰科的答案,您宁愿使用堆栈或框而不是网格。
l5tcr1uw2#
如果要对齐
<Grid item>
内的项目,可使用 PackageBox
组件,如下所示:有关更多定位选项,请参见docs。
eeq64g8w3#
在MUI v5中,您可以使用
Stack
在行或列上显示一组组件。Stack
是一个弹性框,因此您只需设置justifyContent
属性以对齐内部的项目:ca1c2owp4#
如果您不想使用Grid组件,则必须依赖CSS。
但是如果你使用Material-UI,你应该使用JSS(CSS-IN-JS)而不是普通的CSS。
在CSS中,你可以使用这些解决方案中的任何一个,例如,“文本对齐”是最简单的一个。
text-align: right
float: right
display: flex
align-content: flex-end
6qfn3psc5#
将长方体构件与柔体一起使用。
您可以了解更多here
cdmah0mi6#
z2acfund7#
对于最新的material-ui版本5使用justifyContent=“flex-end”或alignContent,这相当于css文本对齐和flex-end=右对齐
适用于旧材质-ui版本4
1cklez4t8#
材质UI的网格组件有辅助 prop 来实现这一点。
你可以在这里找到医生。