Material-UI排版:在4.1.2中停止包装

时间:2019-07-02 20:48:11

标签: material-ui

我正在使用核心4.1.2和样式4.1.2 我不希望使用以下文字来换行:

<Typography variant="h6" noWrap={true}>
{this.props.something}
</Typography>

该行在打开<Typography>之前中断,并且<Typography>组件中的项目没有包装,而是在组件包装后发生了任何变化。如何避免在此组件之前包装它?

我尝试了noWrap="true"和inline =“ true”。

1 个答案:

答案 0 :(得分:0)

我在<Typography />上使用CSS修复了此问题:

.class {
 white-space: nowrap;
}