且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

调整制表器行高

更新时间:2023-12-04 13:27:40

您可以在 CSS 中通过调整单元格内边距来实现,默认为 4px

You can do this in CSS by adjusting the cell padding, which by default is 4px

.tabulator-row .tabulator-cell{
    padding:8px 4px;
}

确保在制表器样式表之后包含此内容

Make sure to include this after the tabulator stylesheet