CSS jQuery Scrollpane问题

时间:2011-06-23 23:38:47

标签: jquery css

我正在使用jquery.jscrollpane.js将滚动条放在div上。它似乎是在下一页的底部放置一个水平滚动条,有人可以帮忙吗?

http://souk.gumpshen.com/our-story/

1 个答案:

答案 0 :(得分:1)

它与.flower上的css有关。

.flower {
    background: transparent url("../images/flowers.png") no-repeat 0 0;
    margin-top: -360px;
    left: 696px;
    position: relative;
    width: 100%;
    z-index: 101;
    width: 400px;
    height: 400px;
}

您将宽度设置得太大,使其溢出页面。你也可以改变你的身高,因为它只是使用289像素x 367像素的背景图像并删除width: 100%;

.flower {
    background: transparent url("../images/flowers.png") no-repeat 0 0;
    margin-top: -360px;
    left: 696px;
    position: relative;
    z-index: 101;
    width: 289px;
    height: 367px;
}