滚动条缺失,因为我已将位置设置为固定。有没有办法让滚动条回来。我已经检查了很多解决方案,但没有一个工作
#OuterGallery {
position:fixed;
margin: -6px auto 0px auto;
width: 100%;
height: 675px;
}
非常感谢您提供的蚂蚁帮助
答案 0 :(得分:1)
执行此任务的唯一方法是通过计算jquery中的窗口高度
if($('#OuterGallery ').height() >= $(window).height()){
$('body').css({
height: $('#OuterGallery ').height() + "px"
})
}