我正在尝试将表格(https://material-ui.com/components/tables/)设置为30px
时的行高,但是看来我只能设置最小53。
为什么?例如,如何在文档链接(https://material-ui.com/components/tables/)中使用CSS设置30px?
我将height: 30px
设置为className MuiTableRow-root
,但是它不起作用。
答案 0 :(得分:0)
我认为增加material-ui表格行高度的最终方法是将表格本身的高度增加到所需的高度。
例如:
const useStyles = makeStyles({
table: {
height: 450
},
});
对我有用。