如何在不使用JavaScript 的情況下將Div 拉伸到100% 頁面高度
在設計網頁時,通常需要建立一個導覽列或跨越頁面整個高度的其他元素,而不僅僅是視口的可見區域。為了實現這一點,讓我們來探索一個純 CSS 解決方案。
CSS 解決方案:
html { min-height: 100%; /* Ensure it's as tall as the viewport */ position: relative; } body { height: 100%; /* Force body to match HTML's height */ } #navigation-bar { position: absolute; top: 0; /* Top edge of the page */ bottom: 0; /* Bottom edge of the page */ left: 0; /* Left edge of the page */ right: 0; /* Right edge of the page */ }
此CSS 將導航列元素絕對定位在視口內,確保它填充整個頁面高度而不滾動
說明:
附加說明:
以上是如何僅使用 CSS 使 Div 跨度達到頁面高度的 100%?的詳細內容。更多資訊請關注PHP中文網其他相關文章!