【发布时间】:2021-02-08 02:16:35
【问题描述】:
如何在一个 Material UI 按钮的角落放置一个图标?
现在我拥有的是这个,图标就在标题旁边。 我希望将图标移动到按钮的右下角......知道如何实现这一点吗?谢谢!
export default function CardButton() {
return (
<Button
variant="contained"
style={{
height: 220,
width: 275,
margin: '1vh',
}}
color="secondary"
>
<Typography variant="button" style={{fontSize:'24px'}}>title</Typography>
<AddIcon/>
</Button>
)
}
【问题讨论】:
标签: javascript html css reactjs material-ui