【发布时间】:2020-06-01 14:49:50
【问题描述】:
我正在尝试将 AppBar 中的文本居中。我尝试使用 align="center", textAlign="center" 和 style={{ align: "center" }}, justify ="center" 使 Typography 元素中的文本居中,但它仍然不起作用。如何使文本居中?
return (
<MuiThemeProvider theme={theme}>
<React.Fragment>
<div alignItems="center" justify="center">
<AppBar position="static">
<Toolbar>
<Typography style={{ align: "center" }}>
Best Practices Management System
</Typography>
</Toolbar>
</AppBar>
</div>
【问题讨论】:
标签: reactjs material-ui