Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我展开我的一个节点,并且数据下降到窗口底部下方时,滚动条出现并且使顶部栏有点挤压。有什么办法可以让滚动条只显示在底部的白色区域。另外,即使不需要它,我可以让它始终显示,因此它不会出现和消失吗?
给白色区域一个固定的高度并设置overflow为auto或scroll。
overflow
auto
scroll
我只会在可能大于窗口的元素上使用 css 'min-height'; body { min-height: 101%; }可能会这样做。
body { min-height: 101%; }