gpt4 book ai didi

reactjs - 按钮多行排版

转载 作者:行者123 更新时间:2023-12-05 04:46:24 27 4
gpt4 key购买 nike

对我来说,不可能在具有多行的 React 中使用 Material-Ui 创建按钮。

这是我的代码:

<Button>
<Typography variant="h3">Text1</Typography>
<Typography variant="h5">Text2</Typography>
</Button>

当前结果:文本1文本2

我想要这个:

Text1
Text2

第一个文本应为 variant=h3,第二个文本应为 v=5。谢谢!!!

最佳答案

您可以将按钮 display 样式设置为 block 。并根据您的要求对齐文本。

在此处探索工作解决方案: Edit react-select-test (forked)

<Button style={{ display: "block", textAlign: "left" }}>
<Typography
variant="h3"
>
Text1
</Typography>
<Typography variant="h5">Text2</Typography>
</Button>

关于reactjs - 按钮多行排版,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68801364/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com