我正在使用jquery.jscrollpane.js将滚动条放在div上。它似乎是在下一页的底部放置一个水平滚动条,有人可以帮忙吗?
答案 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;
}