问题描述
首先,我已经测试了已经建立的所有可能的解决方案,但仍然没有解决我的问题。
我想在材料表行中放置一个较短的高度。这就是现在的样子。
我希望行的高度类似于该图像中的标题。我尝试了很多事情,其中之一是:
options={{
headerStyle: {
whiteSpace: "Nowrap",height: 20,maxHeight: 20,padding: 0
},rowStyle: {
height: 20,}}
如果有人可以帮助我,我将非常感激。
解决方法
您需要使用withStyles
并更新特定的元素类样式,以便它可以反映所有元素。如您所愿,检查工作示例:codesandbox
import MuiTableCell from '@material-ui/core/TableCell';
const TableCell = withStyles(theme => ({
root: {
height: 10,padding:0
}
}))(MuiTableCell);
,
我认为下面的链接可能对您有所帮助。
,更加简化,将16px的填充覆盖为较小的尺寸...
可以在material-table中设置选项
options={{
padding: "dense",}}