gpt4 book ai didi

html - 100% 高度 div 的滚动条

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

我已经设法创建了这个,它是页面的高度,但我试图让它滚动而不是永远向下拉伸(stretch)

enter image description here

.leftnavdiv 的 CSS

.leftnavdiv {
padding-top: 40px;
overflow: hidden;
z-index: 99;
position: fixed;
_position:absolute;
top: 0px;
_top:expression(eval(document.body.scrollTop));
left: 0px;
width: 10px;
height: 100%;
background-color: white;
a:link color:#FF0000;
a:visited color:#00FF00;
}

html:

<div class="leftnavdiv">
<div>
<table style="height:100%;">
<tr style="height:100%;">
<td valign="top" style="height:100%;">
<div id="makebtnset" style="height:100%; overflow-y: scroll;">
<?php
//code removed
?>
</div>
</td>

最佳答案

忘记高度:100%,你可以使用:

.leftnavdiv {
bottom: 0;
left: 0;
overflow-x: hidden;
overflow-y: auto;
padding: 0;
position: fixed;
top: 0;
width: 300px;
}

关于html - 100% 高度 div 的滚动条,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13800203/

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