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.
对于网页内容的某些场景,特别是简单的内容管理,Html 框架是不错的选择。
我的页面包含一个顶部框架和内容框架。我的问题是,当页面向下移动到末尾时,顶部也应该移动,如果滚动等于顶部高度,顶部会看起来。
注:本项目只有一个首页,多个内容页。内容页面也不包含首页代码。就是已知的框架集模板。唯一的区别是帧需要移动。
如果您有一个需要留在页面顶部的标题,请使用
position: fixed;
技术,如果我错了,你需要认真改写你的问题。
我能理解的是,您试图创建页面的一部分,当您在页面上向下/向上滚动时滚动。
在您的 CSS 中,如果您的 iframe id 是“frame”,
然后这样做
#frame{ position:fixed; /* specify widths and heights as you like */ }