Rumah > Artikel > hujung hadapan web > CSS实现Footer置底的五种方式的分享
页脚置底(Sticky footer)就是让网页的footer部分始终在浏览器窗口的底部。
当网页内容足够长以至超出浏览器可视高度时,页脚会随着内容被推到网页底部;
但如果网页内容不够长,置底的页脚就会保持在浏览器窗口底部。
<a href="http://www.php.cn/wiki/935.html" target="_blank">margin-bottom</a>
设为负数<p class="wrapper"> <!-- content --> <p class="push"></p> </p> <p class="footer">footer</p>
html, body { margin: 0; padding: 0; height: 100%; } .wrapper { min-height: 100%; margin-bottom: -50px; /* 等于footer的高度 */ } .footer, .push { height: 50px; }
这个方法需要容器里有额外的占位元素(p.push
)。
p.wrapper
的margin-bottom
需要和p.footer
的-height
值一样,注意是负height
。
<a href="http://www.php.cn/wiki/933.html" target="_blank">margin-top</a>
设为负数给内容外增加父元素,并让内容部分的<a href="http://www.php.cn/wiki/951.html" target="_blank">padding-bottom</a>
与页脚的height
相等。
<p class="content"> <p class="content-inside"> <!-- content --> </p> </p> <p class="footer">footer</p>
html, body { margin: 0; padding: 0; height: 100%; } .content { min-height: 100%; } .content-inside { padding: 20px; padding-bottom: 50px; } .footer { height: 50px; margin-top: -50px; }
calc()
设置内容高度<p class="content"> <!-- content --> </p> <p class="footer">footer</p>
.content { min-height: calc(100vh - 70px); } .footer { height: 50px; }
这里假设p.content
和p.footer
之间有20px的间距,所以70px=50px+20px
以上三种方法的footer高度都是固定的,如果footer的内容太多则可能会破坏布局。
<p class="content"> <!-- content --> </p> <p class="footer">footer</p>
html { height: 100%; } body { min-height: 100%; display: flex; flex-direction: column; } .content { flex: 1; }
<p class="content"> <!-- content --> </p> <p class="footer">footer</p>
html { height: 100%; } body { min-height: 100%; display: grid; grid-template-rows: 1fr auto; } .footer { grid-row-start: 2; grid-row-end: 3; }
Atas ialah kandungan terperinci CSS实现Footer置底的五种方式的分享. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!