我有一个带桌子的简单网页。我还添加了fixed属性和overflow属性,但是表始终在页面底部显示为“ 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;
    }

最佳答案

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

08-17 09:33