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.
我特别想知道如何获得 SpineJS 文档使用的那种滚动 div:
http://spinejs.com/docs/ajax
您会看到,如果您调整窗口大小,右侧(以及左侧)的滚动 div 会调整其高度以跟踪窗口的高度。
这个技巧的关键 css 和 js 元素是什么?
您提到的网站上使用的解决方案只有 CSS。
关键要素是:
CSS位置
CSS行高
CSS高度
CSS溢出
查看这个工作示例并分析用于查看它是如何完成的 CSS!另外,请阅读上面的链接以了解有关这些 CSS 属性的更多信息并学习组合它们!
看起来他们只是overflow: auto在元素上使用 css 属性。如果子内容超出父边界,这将添加滚动条。
overflow: auto
并且元素本身是绝对定位的,顶部、底部和右侧设置为 0px;