HTML 中使 footer 始终处于页面底部

本文介绍了两种使网页页脚footer部分始终处于页面底部的方法。第一种是使用绝对定位,通过将footer设置为绝对定位并固定在底部实现。第二种是采用flex布局,将body设置为flex容器,并指定footer的flex属性为0 0 auto,确保footer在内容不足时处于底部,而在内容超过屏幕高度时正常显示。

通常在页面中,需要使页脚 footer 部分始终处于底部。当页面高度不够 100% 时, footer 处于页面最底部,当页面内容高于 100% 时,页脚元素可以被撑到最底部。

方法一:绝对定位

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <title>旋转六面体动画</title>
    <style>
        * {
            padding: 0;
            margin: 0;
            box-sizing: border-box;
        }

        html {
            height: 100%
        }
        /* 这里footer的父元素为 body, 实际应用中,不一定要以body为父元素,只要确保footer的父元素的最小高度为100%就行 */
        body {
            position: relative;
            min-height: 100%;
            padding: 0;
            padding-bottom: 40px;
        }

        #footer {
            height: 40px;
            background: #eee;
            width: 100%;
            position: absolute;
            bottom: 0;
        }
    </style>
</head>

<body>
    <div class="box">
        <h1>content</h1>
        <h1>content</h1>
        <h1>content</h1>
        <h1>content</h1>
        <h1>content</h1>
    </div>
    <footer id="footer">
        <p>footer footer footer</p>
    </footer>
</body>

</html>

方法二: flex 布局

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <title>footer</title>
    <style>
        * {
            padding: 0;
            margin: 0;
            box-sizing: border-box;
        }

        html {
            height: 100%
        }

        body {
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        #header {
            height: 40px;
            background: red;
            flex: 0 0 auto;
        }

        #box {
            background: #eee;
            flex: 1 0 auto;
        }

        #footer {
            height: 40px;
            background: rgb(129, 129, 201);
            flex: 0 0 auto;
        }
    </style>
</head>

<body>
    <header id="header">
        header header header
    </header>
    <div id="box">
        <h1>content</h1>
        <h1>content</h1>
        <h1>content</h1>
        <h1>content</h1>
        <h1>content</h1>
    </div>
    <footer id="footer">
        <p>footer footer footer</p>
    </footer>
</body>

</html>

转载于:https://www.cnblogs.com/cckui/p/10272359.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值