亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

CSS實現頁面底部固定的案例

發布時間:2020-10-19 14:23:01 來源:億速云 閱讀:150 作者:小新 欄目:web開發

這篇文章將為大家詳細講解有關CSS實現頁面底部固定的案例,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

                                                           本篇文章給大家帶來的內容是關于CSS實現頁面底部固定的方法介紹(附代碼),有一定的參考價值,有需要的朋友可以參考一下,希望對你有所幫助。

當我們在寫頁面時經常會遇到頁面內容少的時候,footer會戳在頁面中間或什么?反正就是不在最底部顯示,反正就是很難看,下面要講的布局就是解決如何使元素粘住瀏覽器底部,

方法一:footer高度固定+絕對定位

html

<div class="dui-container">
<header>Header</header>
<main>Content</main>
<footer>Footer</footer>
</div>

CSS

.dui-container{
position: relative;
min-height: 100%;
}
main {
padding-bottom: 100px;
}
header, footer{
line-height: 100px;
height: 100px;
}
footer{
width: 100%;
position: absolute;
bottom: 0
}

方法二:在主體content上的下邊距增加一個負值等于底部高度

html

<header>Header</header>
<main>Content</main>
<footer>Footer</footer>

CSS

html, body {
height: 100%;
}
main {
min-height: 100%;
padding-top: 100px;
padding-bottom: 100px;
margin-top: -100px;
margin-bottom: -100px;
}
header, footer{
line-height: 100px;
height: 100px;
}

方法三:將頁腳的margin-top設為負數

html

<header>Header</header>
<main>Content</main>
<footer>Footer</footer>

CSS

main {
min-height: 100%;
padding-top: 100px;
padding-bottom: 100px;
}
header, footer{
line-height: 100px;
height: 100px;
}
header{
margin-bottom: -100px;
}
footer{
margin-top: -100px;
}

方法四: 通過設置flex,將footer的margin-top設置為auto

html

<header>Header</header>
<main>Content</main>
<footer>Footer</footer>

CSS

body{
display: flex;
min-height: 100vh;
flex-direction: column;
}
header,footer{
line-height: 100px;
height: 100px;
}
footer{
margin-top: auto;
}

方法五: 通過函數calc()計算內容的高度

html代碼

<header>Header</header>
<main>Content</main>
<footer>Footer</footer>

CSS代碼

main{
min-height: calc(100vh - 200px); /* 這個200px是header和footer的高度 */
}
header,footer{
height: 100px;
line-height: 100px;
}

方法六: 通過設置flexbox,將主體main設置為flex

html

<header>Header</header>
<main>Content</main>
<footer>Footer</footer>

CSS代碼

body{
display: flex;
min-height: 100vh;
flex-direction: column;
}
main{
flex: 1
}

方法七: 使用grid布局

Html代碼

<header>Header</header>
<main>Content</main>
<footer>Footer</footer>

CSS代碼

html {
height: 100%;
}
body {
min-height: 100%;
display: grid;
grid-template-rows: auto 1fr auto;
}
.footer {
grid-row-start: 3;
grid-row-end: 4;
}

方法八: display-*

html

<header>Header</header>
<main>Content</main>
<footer>Footer</footer>

CSS

body {
  min-height: 100%;
  display: table;
  width: 100%;
}
main {
  display: table-row;
  height: 100%;
}

關于CSS實現頁面底部固定的案例就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

微山县| 扶风县| 亳州市| 镇坪县| 上虞市| 灵璧县| 静乐县| 伽师县| 新安县| 芮城县| 陇川县| 科尔| 廉江市| 阿拉善盟| 南丰县| 翁源县| 枣强县| 大新县| 云南省| 玛沁县| 黄大仙区| 通化县| 钟祥市| 福建省| 枣阳市| 黎川县| 枞阳县| 长治县| 博乐市| 盐边县| 上虞市| 阿坝| 利川市| 克东县| 彩票| 施秉县| 绍兴县| 简阳市| 磴口县| 镇平县| 乐山市|