gpt4 book ai didi

material-ui:如何在表格单元格中放置文本?

转载 作者:行者123 更新时间:2023-12-03 18:14:10 24 4
gpt4 key购买 nike

我在谷歌上搜索了很多小时以找到解决方案,但在表格单元格中垂直对齐文本似乎非常困难。我很困惑为什么他们使水平对齐变得容易,而垂直对齐却那么困难。

<TableCell colSpan={2} align='center' vertical-align='top' > 
<Typography variant="h5" gutterBottom >
Task
</Typography>
</TableCell>

最佳答案

TableCell来自 material-ui 的组件 doesn't provide such vertical-align Prop ,仅 align .更改 TableCell 的垂直对齐方式你必须通过一个 style Prop (或类名),像这样:

<TableCell colSpan={2} align="center" style={{ verticalAlign: 'top' }} > 
<Typography variant="h5" gutterBottom >
Task
</Typography>
</TableCell>

任何 Prop TableCell不知道 is passed to it's children root (在这种情况下为 th 元素),以及在 JSX you can pass a inline style 中与 Prop style和一个驼色的物体。

关于material-ui:如何在表格单元格中放置文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55239101/

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