实现<div>高度最大化的纯css方案

<html>
<head>
<style type="text/css">
html, body {
    height: 100%;
    margin: 0px;
}

/* this is the big trick*/
#wrapper:before {
    content:‘‘;
    float: left;
    height: 100%;
}
#wrapper {
    height: 100%;
    background-color: black;
    color: white;
}
#header {
    background-color:#000;
}
#content {
    background-color: grey;
}
/* this is the big trick*/
#content:after {
    content:‘‘;
    display: block;
    clear: both;
}
</style>
</head>
<body>
<div id="wrapper">
    <div id="header">
        Title here    
    </div>
    <div id="content">Some content</div>
</div>
</body>
</html>

转自: 

Set div to fill in the rest of the height dynamically?

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。