如何在MUI中对齐水平图标和文本

2022-02-22 00:00:00 reactjs html css material-ui

我是MUI的新手,现在我的图标和文本不对齐:

我想要的结果:

我的代码是:

<div style={{
    display: 'inline-flex',
    VerticalAlign: 'text-bottom',
    BoxSizing: 'inherit',
    textAlign: 'center',
    AlignItems: 'center'
}}>
    <LinkIcon className={classes.linkIcon}  />
    revolve
</div>  

我尝试了网格和行,但没有工作。有人能帮我吗?


解决方案

该功能工作正常!

<div style={{
    display: 'flex',
    alignItems: 'center',
    flexWrap: 'wrap',
}}>
    <LinkIcon />
    <span>revolve</span>
</div>  

相关文章