首页 > Web开发 > 详细

css的理解 ----footrt固定在底部

时间:2019-01-29 21:34:58      阅读:195      评论:0      收藏:0      [点我收藏+]
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<style>
    *{
        margin:0;
        padding: 0;
    }
    html,body{
        height: 100%;
    }
    #container{

        width: 100%;
        min-height: 100%;
        padding-bottom: 50px; /*底部空出50px,放footer*/
        position: relative;
        box-sizing: border-box; /*效果:padding后不改变其宽高*/
    }
    .nav{
        /*最上面的div不能有margin-top,不然会造成整个body下移*/
        width: 100%;
        height: 50px;
        background-color: blue;
    }
    .main{

        width: 100%;
        height: 400px;
        background-color: red;
    }
    .footer{
        height:50px;
        background-color: yellow;
        position: absolute; /*相对于#container固定定位*/
        left: 0;
        bottom: 0;
        width: 100%;
    }
</style>
<body>
    <div id="container">
        <div class="nav"></div>

        <div class="main"></div>

        <div class="footer"></div>
    </div>
</body>
</html>

 

css的理解 ----footrt固定在底部

原文:https://www.cnblogs.com/cl94/p/10335834.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!