如何在调整页面大小时获取滚动条?

时间:2018-05-14 22:27:41

标签: html css

我有一个带表格的简单网页。我已经添加了固定属性和溢出属性,但表格总是出现" cut off"在页面的底部。我正在尝试在页面上获取滚动条,以便当表行不适合时(例如,用户调整窗口大小),用户应该能够向下滚动到最后一行。

    #dstable {
    table-layout:fixed;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 90%;
    height: 90%;
    overflow: scroll;
}

    #dstable td {
        border: 1px solid white;
        height: 100px;
        width: 300px;
        font-size: 18px;
        color: black;
        padding: 15px;
        text-align: right;
    }

    #dstable tr:nth-child(even) {
        background-color: white;
    }

    #dstable tr:nth-child(odd) {
        background-color: #e0f7d0;
    }

    #dstable td:hover {
        background-color: #ddd;
    }

    #dstable th {
        padding: 8px;
        padding-top: 12px;
        padding-bottom: 12px;
        text-align: center;
        background-color: #4CAF50;
        color: white;
    }

1 个答案:

答案 0 :(得分:-1)

尝试将max-height: 90%;添加到#dstable,这应该可以解决问题。