gpt4 book ai didi

reactjs - Material UI - 避免 Typography 组件之间的换行

转载 作者:行者123 更新时间:2023-12-03 13:32:32 29 4
gpt4 key购买 nike

我想对我的文本应用两个不同的版式标签,但我不希望中间有换行符。

这就是我所拥有的:

<Typography variant="title" color="inherit" noWrap>
Project:
</Typography>
<Typography variant="subheading" color="inherit" noWrap>
Example
</Typography>

这就是它的样子(带有换行符):

enter image description here

工作示例: https://codesandbox.io/s/jzmz7klzmy

如何删除换行符?

最佳答案

将它们包装在 display:flex 中,它将显示在一行中。

<div style={{display:"flex"}}>
<Typography variant="title" color="inherit" noWrap>
Project:
</Typography>
<Typography variant="subheading" color="inherit" noWrap>
Example
</Typography>
</div>

codesandbox已编辑的代码。

编辑:您可以在示例上使用style={{marginLeft:10}}来在两者之间留出间距。如果你想垂直对齐它们,请将 flexDirection:'column' 赋予 Projectstyle

关于reactjs - Material UI - 避免 Typography 组件之间的换行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51048504/

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