我正在尝试确定确保特定 DIV 始终距底部 20px 和距右侧 20px 的最佳方法,即使用户滚动也是如此。
<body>
<div id="wrap">
<p>Some content</p>
</div>
<div class="social-badges"><!-- this is the box that will always be at the bottom right --></div>
</body>
$(window).scroll(function() {
console.log('scrolling');
$(".tba-social-slider").css({"position" : "absolute", "bottom" : "20px", "right" : "20px"});
});