0

我正在尝试在另一个 DIV 上放置一个滚动条。

所以...第一个 div 是一个类似于 div 的内容。只需一些边距、填充和位置即可将我的内容放在中心列中。

在这个 div 里面,我想放一个垂直滚动的文本框。例如,我会将高度为 800 像素的内容放在高度为 400 像素的空间中。

滚动类:

.scrollbox {
   overflow-y: auto !important;
   /*background: blue !important;*/
   height: 800px;
   width:100%; 
       }

但它什么也没发生。

看:http ://www.agenciarara.com.br/2013/marinheiros

4

1 回答 1

0

scoll 的问题出在你的 paralax 脚本中,试试这部分代码:

CSS

.scrollbox {
    position: relative;
    height: 400px;
    width: 100%;
    overflow-y: scroll;
    z-index: 9999; /*higher than paralax */ 
}
于 2013-04-24T17:14:35.270 回答