將元素絕對水平且垂直固定
目標是創建一個與另一個元素的右邊緣保持固定距離的按鈕無論視口大小如何,同時垂直滾動window.
解決方案
要實現此目的,我們可以使用CSS 定位屬性的組合:
<div class="container"> <div class="button"></div> </div>
CSS:
.container { position: relative; } .button { position: absolute; right: 10px; /* Distance from the right edge of the container */ top: 100px; /* Distance from the top of the viewport */ }
透過將.button 的位置設為絕對,我們使其獨立於正常的文檔流。 right 屬性指定離容器右邊緣的水平距離,而 top 定義與視窗頂部的垂直距離。
注意: 此解決方案建立一個固定元素,即相對於其容器水平定位,滿足題中「垂直固定,絕對水平」的條件。
以上是如何才能絕對水平定位元素並垂直固定?的詳細內容。更多資訊請關注PHP中文網其他相關文章!