码迷,mamicode.com
首页 > 其他好文 > 详细

flex引起height:100%失效

时间:2016-12-27 20:14:37      阅读:2392      评论:0      收藏:0      [点我收藏+]

标签:tom   pos   footer   元素   splay   display   ott   bottom   text   

<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title></title>
    <meta charset="utf-8" />
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            height: 100%;
        }

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

        header {
            height: 50px;
            line-height: 50px;
            text-align: center;
            background-color: #ccc;
            border-bottom: 1px solid #999;
        }

        footer {
            height: 50px;
            line-height: 50px;
            text-align: center;
            background-color: #ccc;
            border-top: 1px solid #999;
        }

        .main {
            flex: 1;
            position: relative;
        }

        .panel {
            position: absolute;
            width: 100%;
            height: 100%;
            background-color: #ccc;
        }
    </style>
</head>
<body>
    <div class="wrap">
        <header>
            头部
        </header>
        <div class="main">
            <div class="panel">
                <pre>
                    父容器position:relative;
                    子元素position:absolute;
                    width: 100%;
                    height:100%;
                </pre>
            </div>
        </div>
        <footer>
            底部
        </footer>
    </div>
</body>
</html>

flex引起height:100%失效

标签:tom   pos   footer   元素   splay   display   ott   bottom   text   

原文地址:http://www.cnblogs.com/zhangzs000/p/6227196.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!