滚动功能当“位置”设置为“固定”时

时间:2014-11-11 02:29:46

标签: html css scrollbar

滚动条缺失,因为我已将位置设置为固定。有没有办法让滚动条回来。我已经检查了很多解决方案,但没有一个工作

#OuterGallery {
  position:fixed;
  margin: -6px auto 0px auto;
  width: 100%;
  height: 675px;
} 

非常感谢您提供的蚂蚁帮助

1 个答案:

答案 0 :(得分:1)

执行此任务的唯一方法是通过计算jquery中的窗口高度

live code

  if($('#OuterGallery ').height() >= $(window).height()){
      $('body').css({
      height: $('#OuterGallery ').height() + "px"
  })
  }