我完全希望这个问题是错误的,我甚至不会想到能够帮助我的措词,但如果有人能指出我正确的方向,我会很激动。
我正在使用
style="bottom:0;position:fixed;_position:absolute;center:0;"
这就是我想要的。仅当页面必须滚动时才会滚动。有没有办法只让一个页面可以去掉90%而忽略底部的10%,这样该部分永远不会触及页面的任何其他部分?
答案 0 :(得分:1)
1)为什么不在div中粘贴“不需要的内容”并将其显示设置为无?如果你不想展示它,还是完全删除它?
<强> HTML 强>
<div class="not-needed">
//all the stuff i dont need
</div>
<强> CSS 强>
.not-needed{
display:none;
}
2)或者:将您需要的所有内容放在一个div中并添加一个滚动条,然后强制从body / html中删除滚动。
<body> <!-- Remove scroll from body -->
<div class="needed"> <!-- add scroll to this div -->
//all the stuff i need
</div>
<div class="not-needed">
//all the stuff i dont need
</div>
</body>