用戶尋求一種解決方案,使按鈕與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中文網其他相關文章!