1
the pic shows up the footer shifting when user resize the window[1]

这是关于footer-rowcss设置的

#footer-row {
   text-align: center;
   color: white;
   text-transform: uppercase;
   font-size: 9pt;
   position: absolute;
   bottom:0;
}

以及整个容器的设置

.container-fluid {
   padding: 0px;
   margin: 0px;
   /*position:relative;*/
}

对不起大家......我修改了我的问题......我的问题是......无论用户调整窗口大小,我怎样才能修复所有 div?

4

1 回答 1

0

使用这个 HTML:

<div id="myElement" style="position: absolute">This stays at the top</div>

这是您要使用的 javascript。它将一个事件附加到窗口的滚动条上,并将元素向下移动到滚动为止。

$(window).scroll(function() {
    $('#myElement').css('bottom', -1*$(this).scrollTop() + "px");
});

检查此链接:http: //jsfiddle.net/fZc2L/

于 2013-06-07T00:08:02.820 回答