新標題:確保頁腳始終位於頁面底部
P粉318928159
P粉318928159 2023-08-27 23:13:19
0
1
425

我正在進行一個項目,我想讓頁腳保持在頁面底部,但在滾動到頁面底部之前不可見。我嘗試在我的CSS中使用'position: fixed',但它浮在我的內容上方,對於絕對定位,它固定在頁面中間並覆蓋了內容。此外,對於內容不多的頁面,當我不指定位置或使用'position: absolute'時,頁腳下方會有空白。請提供建議。

* { margin: 0; padding: 0; } header { background-color: gray; } footer { background-color: gray; bottom: 0; height: 20px; position: fixed; width: 100%; } /* 當我使用fixed定位時,頁腳固定在內容上方。我想要的是頁腳保持在頁面底部但不可見。 */   
標題

標題

Lorem ipsum dolor sit, amet consectetur adipisicing elit. Adipisci eos deserunt fugiat doloremque your text`ut.

© 版權所有, 商業
P粉318928159
P粉318928159

全部回覆 (1)
P粉554842091

我認為你可以給它添加一個父級div,父級div的寬度和高度與它相同。

html:

.footer { position: fixed; bottom: 0; left: 0; width: 100vw; height: 200px; background-color: red; } .footer-container { height: 200px; width: 100vw; }
    最新下載
    更多>
    網站特效
    網站源碼
    網站素材
    前端模板
    關於我們 免責聲明 Sitemap
    PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!