zoukankan      html  css  js  c++  java
  • 简单而兼容性好的Web自适应高度布局,纯CSS

    纯CSS实现的自适应高度布局,中间内容不符自动滚动条。兼容IE9以上、chrome、FF。关键属性是box-sizing: border-box。

    不废话,直接上代码:

    <!doctype html>
    <html>
    <head>
        <meta charset="UTF-8">
        <title>Document</title>
    </head>
    <style>
        *{padding:0;margin:0}
        .head{
            height:90px;
            background: #090;
            position: absolute;
            width: 100%;
        }
        .content{
            height:100%;
            background: #808;
            position: absolute;
            width: 100%;
            padding:90px 0 30px 0;
            box-sizing: border-box;
            z-index: -1;
        }
        .foot{
            height:30px;
            background: #890;
            position: fixed;
            bottom:0;
            width: 100%;
        }
        .cnt{
            height:100%;
            overflow: auto;
        }
    </style>
    <body>
    <div class="head">Head</div>
    <div class="content">
        <div class="cnt">
            内容<br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/>
            内容<br/>
            <div>div here</div><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/>
            内容<br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/>
            内容<br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/>
            内容<br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/>
            内容
        </div>
    </div>
    <div class="foot">Foot</div>
    </body>
    </html>
  • 相关阅读:
    fedora 27
    Python3 字符串操作
    python3 使用matplotlib画图问题
    Python3 移动文件——合集
    MySQL开放外部链接
    python之csv操作问题
    Question
    17-12-21
    python之List排序
    ubuntu版的sublime-text3输入中文问题
  • 原文地址:https://www.cnblogs.com/hz-blog/p/CSS-Auto-Fix-Height-Layout.html
Copyright © 2011-2022 走看看