我正在使用dataTable jquery插件。
我需要减少行的高度,我该怎么办? (我需要一个固定的高度)
我试过了:
.dataTables tbody tr {
min-height: 35px; /* or whatever height you need to make them all consistent */
}
答案 0 :(得分:3)
答案 1 :(得分:2)
答案 2 :(得分:0)
在CSS中设置:
<style>
td {
white-space: nowrap;
max-width: 100%;
}
</style>
这些DataTable选项会让它变得更好:
scrollY: "530px",
scrollX: true,
scrollCollapse: true,