我想通过滚动来修复顶部的div元素。 我用以下代码实现了这个目标:
使用Javascript:
$(function () {
var msie6 = $.browser == 'msie' && $.browser.version < 7;
if (!msie6) {
var top = $('#betslip').offset().top - parseFloat($('#betslip').css('margin-top').replace(/auto/, 0));
$(window).scroll(function (event) {
// what the y position of the scroll is
var y = $(this).scrollTop();
// whether that's below the form
if (y >= top) {
// if so, ad the fixed class
$('#betslip').addClass('fixed');
} else {
// otherwise remove it
$('#betslip').removeClass('fixed');
}
});
}
CSS:
#betslip.fixed {
position: fixed;
top: 0;
}
HTML:
<div class="col-md-12" id="betslip">
...
</div>
问题是,滚动div元素时会变大。我该如何解决/阻止这种情况?
以下是滚动之前和之后的屏幕截图:
答案 0 :(得分:0)
通过将position: fixed;
添加到#betslip
,它将忽略容器的宽度。尝试将width: inherit;
添加到#betslip
。修复