显示更多dataTable行后,渐变背景不再适合页面

时间:2017-01-19 19:13:58

标签: jquery html css datatables

我目前正在使用bootstrap创建一个网站,我正在使用DataTables。有一个小框,您可以在其中选择要查看的行数: enter image description here

现在当我选择10个以上的条目时,背景不会随之拉伸: enter image description here

我用于后台的css代码:

body, html {
    height: 100%;
    background: linear-gradient(rgb(52,138,199), rgb(116,116,191)) no-repeat;
}

我怎样才能使背景随之延伸?

提前致谢!

1 个答案:

答案 0 :(得分:1)

适用于height:auto;

body, html {
    height: auto;
    background: linear-gradient(rgb(52,138,199), rgb(116,116,191)) no-repeat;
}