具有可捲動內容的固定頁眉和頁腳
使用以下最少的HTML 和CSS 可以實現具有可滾動內容的固定頁首和頁尾代碼。
<html> <body>
body { height: 100%; width: 100%; } #header { position: absolute; top: 0px; left: 0px; height: 200px; right: 0px; overflow: hidden; } #content { position: absolute; top: 200px; bottom: 200px; left: 0px; right: 0px; overflow: auto; } #footer { position: absolute; bottom: 0px; height: 200px; left: 0px; right: 0px; overflow: hidden; }
此 HTML 和 CSS 程式碼建立固定的頁首和頁腳,中間有可捲動的內容區域。頁首和頁尾具有固定高度,而內容區域可以垂直捲動。
以上是如何使用 HTML 和 CSS 建立具有可捲動內容的固定頁首和頁尾?的詳細內容。更多資訊請關注PHP中文網其他相關文章!