Chocolate1999 / Front-end-learning-to-organize-notes

☀小狮子前端の学习☁整理笔记❤ Front-end-learning-to-organize-notes 帮你整理好前端知识体系、更高效地吸收经验成果;另附小狮子前端进阶小册食用指北,敬请关注!
https://chodocs.cn/
MIT License
1.09k stars 152 forks source link

实现页脚在内容最底部 #482

Open Chocolate1999 opened 3 years ago

Chocolate1999 commented 3 years ago

image

Chocolate1999 commented 3 years ago
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        * {
            margin: 0;
        }

        html,
        body {
            height: 100%;
        }

        .container {
            min-height: 100%;
        }

        .content {
            background: goldenrod;
            color: white;
            text-align: center;
        }

        .placeholder {
            height: 50px;
        }

        .footer {
            height: 50px;
            background: greenyellow;
            margin-top: -50px;
        }
    </style>
</head>

<body>
    <div class="container">
        <div class="content">我是内容</div>
        <div class="placeholder"></div>
    </div>
    <div class="footer"></div>
</body>

</html>