gpt4 book ai didi

html - 调整页面大小时如何获得滚动条?

转载 作者:行者123 更新时间:2023-11-28 15:11:23 25 4
gpt4 key购买 nike

我有一个带有表格的简单网页。我也添加了 fixed 属性和 overflow 属性,但表格总是在页面底部显示为“截断”。我试图在页面上获得滚动条,以便当表格行不适合时(例如,用户调整窗口大小),用户应该能够向下滚动到最后一行。

    #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,应该可以解决问题。

关于html - 调整页面大小时如何获得滚动条?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50339872/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com