jquery数据表更改默认最小高度

发布于 2024-10-06 22:15:48 字数 335 浏览 3 评论 0原文

我正在使用数据表。 ( http://datatables.net/ )我创建了一个表。我有一个身高问题正在努力改变。我用萤火虫检查了桌子的大小。表格高度默认设置为 302px。我找不到如何更改。我尝试更改 css 但未成功。如果有人帮忙,我很感激。

来自萤火虫:

.dataTables_wrapper {
    clear: both;
    min-height: 302px;
    position: relative;
}

提前感谢.. 厄兹莱姆

I am using datatables. ( http://datatables.net/ ) I have created a table. There is a height problem I am struggling to change. I checked the table size with firebug. The table height is set 302px by default. I could not find how to change.I tried to change css unsuccessfully. I appreciate, if anyone helps.

from firebug:

.dataTables_wrapper {
    clear: both;
    min-height: 302px;
    position: relative;
}

Thanks in advance..
Ozlem

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

笑脸一如从前 2024-10-13 22:15:48

200后添加px

$('#id').css('min-height','200px');

希望它能为某人节省 10 秒钟。

Add px after 200.

$('#id').css('min-height','200px');

Hope it saves somebody 10 seconds.

烟凡古楼 2024-10-13 22:15:48

// 你可以通过 .css 设置任何 css 属性,如下所示

$('#id').css('min-height','200');

// you can set the any css property through .css like below

$('#id').css('min-height','200');
温暖的光 2024-10-13 22:15:48

现在我会实现这样的 https://datatables.net/reference/option/fixedColumns.heightMatch ,在 site.js 中:

$('.dataTables_wrapper').DataTable( {
fixedColumns: {
    heightMatch: 'none'
}});

和在 site.css 中:

td {
line-height: 45px;}

Nowadays I would implement sth like this https://datatables.net/reference/option/fixedColumns.heightMatch, in site.js:

$('.dataTables_wrapper').DataTable( {
fixedColumns: {
    heightMatch: 'none'
}});

and in site.css:

td {
line-height: 45px;}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文