管理漸層背景以填滿視窗高度
將CSS3 漸層背景應用於
時元素,它預設會重複自身,而不是拉伸以填充整個瀏覽器視窗。儘管在基於 WebKit 和 Gecko 的瀏覽器中都觀察到這種行為,但這種行為是故意的。要解決此問題,需要設定漸層:
設定HTML的高度元素:
html { height: 100%; }
管理正文元素:
body { height: 100%; // Match the height of the HTML element margin: 0; // Remove any margins to ensure full window coverage background-repeat: no-repeat; // Prevent gradient repetition background-attachment: fixed; // Keep the gradient in position as the page scrolls (optional) }
以上是如何讓CSS漸層背景填滿整個瀏覽器視窗高度?的詳細內容。更多資訊請關注PHP中文網其他相關文章!