0

我有一个使用 JQuery UI 的可调整大小和可移动的 div。我想要一个垂直滚动的表格。尝试将表格高度设置为 100% 基本上没有任何作用,并且顶部和底部为 0 的绝对定位也不起作用。我试图将一个单独的 div 作为一个容器,这让我比什么都更接近,但它仍然不能正常运行。

这是小提琴:http: //jsfiddle.net/scottbeeson/KrP7v/1/

这是相关的CSS:

table {
    border-collapse: collapse;
    width: 100%; height: 100%;
}
#tableContainer {
    height: 100%; width: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
}

以及基本的 HTML 布局:

<div id="window">
    <div id="header">Draggable Header</div>
    <div id="tableContainer">
    <table>
        <thead>
            <tr>
                <td>Column 1</td>
                <td>Column 2</td>
            </tr>
        </thead>
        <tbody>
            ...
        </tbody>
    </table>
    </div>
</div>
4

2 回答 2

1

我认为这就是你想要的。

http://jsfiddle.net/KrP7v/12/

#window {
    width: 500px;
    height: 400px;
    min-width: 100px;
    min-height: 100px;
    border-bottom: 1px solid gray;
}
#header {
    height: 25px;
    line-height: 25px;
    background-color: gray;
    color: white;
    text-align: center;
}
table {
    min-height: 300px;
    height: 100%;
    width: 100%;
    border-collapse: collapse;
}
#tableContainer {
    position: absolute;
    top: 25px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: 0;
    padding: 0;
    overflow: auto;
}
td {
    padding: 5px;
    margin: 0px;
    border: 1px solid gray;
}
tr:last-child td {
    border-bottom: none;
}
于 2013-11-12T17:56:56.930 回答
0

以下是您可以执行的操作:

http://jsfiddle.net/KrP7v/4/

#window {
  width: 400px; 
  border: 1px solid green;
  overflow-x: scroll;
  overflow-y: scroll;
}
于 2013-11-12T17:36:00.393 回答