zoukankan      html  css  js  c++  java
  • css上下或者上中下 自适应布局

    方法就是头部不变,中间和底部绝对定位

                *{
                    margin: 0;
                    padding: 0;
                }
                div{
                    text-align: center;
                    font-size: 30px;
                }
                .header,.footer{
                     100%;
                    height: 100px;
                    line-height: 100px;
                    background-color: red;
                }
                .content{
                     100%;
                    position: absolute;
                    top: 100px;
                    bottom:100px;
                    background-color: yellow;
                }
                .footer{
                    position: absolute;
                    bottom: 0px;
                }
    
             <div class="header">头部</div>
            <div class="content">内容</div>
            <div class="footer">底部</div>

    没有底部了去掉footer,和样式,把content的bottom改成0px就行了

  • 相关阅读:
    关于重构的一些方法
    java基础 逻辑
    java基础
    去重和数组排序
    表单验证
    JS实例5
    window.document对象
    JS实例4
    JS实例3
    JS实例2
  • 原文地址:https://www.cnblogs.com/bruce-gou/p/6376382.html
Copyright © 2011-2022 走看看