揭示position:sticky 和position:fixed 之間的區別
理解CSS 定位屬性之間的細微差別可能會讓初學者感到困惑。本文深入探討了position:sticky 和position:fixed 之間的細微差別,闡明了它們不同的功能以增強您的CSS 能力。
position:fixed 與position:sticky
position:fixed
position:sticky
範例
考慮以下HTML 與CSS:
<code class="html"><div class="container"> <div class="sticky-element">Sticky Element</div> <div class="fixed-element">Fixed Element</div> </div></code>
<code class="css">.container { height: 100vh; /* Set the container to full viewport height */ overflow-y: scroll; /* Enable vertical scrolling within the container */ } .sticky-element { position: sticky; top: 10px; /* Specifies the offset from the top before stickiness applies */ width: 200px; height: 200px; background-color: blue; } .fixed-element { position: fixed; top: 0; /* Sets the fixed position from the top of the viewport */ width: 200px; height: 200px; background-color: red; }</code>
行為:
行為:行為:滾動時,黏性元素保持在原位,直到它到達視口的頂部,此時它像固定元素一樣粘在頂部。另一方面,無論容器滾動如何,固定元素都保持粘在其初始位置。以上是我什麼時候應該使用 Position:Sticky 和 Position:Fixed?的詳細內容。更多資訊請關注PHP中文網其他相關文章!