反应物料表-设置行高

时间:2020-10-22 18:33:38

标签: reactjs material-table

首先,我已经测试了已经建立的所有可能的解决方案,但仍然没有解决我的问题。

我想在材料表行中放置一个较短的高度。这就是现在的样子。

Table

我希望行的高度类似于该图像中的标题。我尝试了很多事情,其中​​之一是:

    options={{
         headerStyle: {
             whiteSpace: "nowrap",
             height: 20,
             maxHeight: 20,
             padding: 0
         },
         rowStyle: {
             height: 20,
             maxHeight: 20,
             padding: 0
         },
    }}

如果有人可以帮助我,我将非常感激。

4 个答案:

答案 0 :(得分:1)

您需要使用withStyles并更新特定的元素类样式,以便它可以反映所有元素。如您所愿,检查工作示例:codesandbox

import MuiTableCell from '@material-ui/core/TableCell';

const TableCell = withStyles(theme => ({
  root: {
    height: 10,
    padding:0
  }
}))(MuiTableCell);

答案 1 :(得分:0)

我认为下面的链接可能对您有所帮助。

customizing material ui table

答案 2 :(得分:0)

更加简化,将16px的填充覆盖为较小的尺寸...

答案 3 :(得分:0)

可以在material-table中设置选项

options={{
  padding: "dense",
}}