如何设置浏览器滚动条滚动页面的一部分并隐藏容器div的溢出?
我的网页上有固定的页眉、页脚、侧边栏,我想对其进行设置,以便只有我的内容 div 随浏览器滚动条滚动。我遇到的问题如下:
因为我的标题由透明元素组成,所以滚动文本显示在标题后面。如何隐藏滚动文本,使其仅在包裹它的固定容器 div 中可见?
我想仅使用CSS来解决这个问题!如果可能的话 :)
I have a fixed header, footer, sidebar on a webpage and I want to set it up so ONLY my content div scrolls with the browser scrollbar. The problem I am experiencing is as follows:
Because my header in made up of transparent elements the scrolling text shows behind my header. How do I hide the scrolling text so that it is only visible within the fixed container div that wraps it?
I would like to solve this problem using css only! If possible :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将页眉和页脚父 div(或其他块元素)设置为
position:fixed
You'll want to set your header and footer parent divs (or other block elements) as
position: fixed