从身高设置div高度

时间:2013-03-30 22:24:14

标签: html scroll fullscreen

我的身体和html是高度100%并且溢出隐藏,但我需要一个div来能够滚动自己的内容。这是jsfiddle,因为您可以看到div中的内容向上滚动到某个点。我试图设置它的高度取决于身高减去标题高度和填充。

CSS:

body{ 
overflow:hidden;/* needed to eliminate scrollbars caused by the background image */
padding:0;
    margin:0;/* necesarry for the raster to fill the screen */
    height:100%;
    width:100%;
}
html{
   min-height:100%;
   padding:0;
   margin:0;
}
#header{
   height:70px;
   background:#000;
   color:#fff;
   margin:0;
   padding:0;
}
#votes{
background:rgba(0,0,0,0.8);
width:266px;
position:absolute;
right:0;
padding:5px 5px 50px;

color:#fff !important;
z-index: 99999;
  overflow:scroll;

}

JS

$(document).ready(function(){
var height = $(document).height();
var divheight = height - 130;
$('#votes').attr('style', 'height:' + divheight + 'px');

}); 

1 个答案:

答案 0 :(得分:0)

溢出-γ:汽车;或溢出:滚动;继续使整个页面滚动。你总是可以去找iframe。这是一个可怕的解决方案