用户寻求一种解决方案,使按钮与 div 右边缘保持一定距离,无论视口大小如何,同时随窗口滚动。这可以使用以下策略来实现:
<div class="inflow"> <div class="positioner"> <!-- May not be needed --> <div class="fixed"></div> </div> </div>
div.inflow { width: 200px; height: 1000px; border: 1px solid blue; float: right; position: relative; margin-right: 100px; } div.fixed { width: 80px; border: 1px solid red; height: 100px; position: fixed; top: 60px; margin-left: 15px; }
以上是如何在滚动时定位垂直固定和绝对水平的元素?的详细内容。更多信息请关注PHP中文网其他相关文章!