表水平滚动条获得额外的空间。

时间:2017-11-21 04:40:32

标签: html css

我正在尝试构建一个可滚动的表,所以我将我的表放在div(#tableScroll)中并将此CSS添加到表包装器div中。

#tableScroll {
    max-height: 320px;
    overflow: auto;
}

这是我的HTML页面截图。 enter image description here

但我获得了额外的空间,请查看屏幕截图。 enter image description here

然后我检查元素并发现表tbody height负责这个额外的空间。

请参阅检查屏幕截图 enter image description here

请给我你的想法/想法,这对我很有帮助。

3 个答案:

答案 0 :(得分:1)

只需按类.table-responsive替换#tableScroll。

<div class="m-b-5">
 <div class="table-responsive">

答案 1 :(得分:0)

尝试将其更改为overflow: scroll;auto just lets the browser decide

#tableScroll {
    max-height: 320px;
    overflow: scroll;
    height: 320px;
    display: block;
}

答案 2 :(得分:0)

如果您需要bulkTable的高度是{1}},我认为该表的ID为tableScroll,另一件事就是给bulkTable一个水平卷轴,为此你应该在CSS overflow-x: auto

中使用它
#bulkTable {
  overflow-x: auto; }

我希望它可以帮到你:D