所以这是我网站的链接。我想要正确的容器滚动到位。我怎样才能做到这一点?我尝试添加position: fixed
到右列,但随后破坏了布局。现在溢出总是一直滚动到顶部。基本上我想insta-shop-grid
在容器本身内滚动。
问问题
95 次
2 回答
1
添加z-index: -1
到主要内容,防止它在横幅上方滚动。
请参阅简化的 JSFiddle。
更新:
从@Anobik 窃取,我修改了我的示例,删除z-index
并在主要内容周围添加了一个fixed
包装器
HTML:
<div class="banner">Banner</div>
<div class="nav">Navigation</div>
<div class="container">
<div class="content">Main content</div>
</div>
CSS:
.container {
position: fixed;
top: 60px;
left: 125px;
width: 75%;
height: 400px;
overflow: scroll;
}
于 2013-09-29T14:36:07.347 回答
1
我将其编辑为内联样式
看看它是否有效。将它们添加到一个类中。
<div class="directory-container container" style="
max-height: 400px;
z-index: 1111111;
overflow: scroll;width: 100%;
margin-top: 361px;
">
并添加<body style="overflow:none">
但是网站确实需要一些响应式设计。我使用 400px 和 360 作为边距,因为填充已经存在。:) 我仍然希望这会奏效
于 2013-09-29T14:32:25.857 回答