如何让白盒(容器)完全延伸到页面底部?
CSS:
@import url(http://fonts.googleapis.com/css?family=Raleway);
html,body
{
height: 100%;
font-family: 'Raleway', sans-serif;
}
body.app
{
background: #8e44ad;
}
div.container
{
margin: 25px 25px 0px 25px;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
min-height: 96vh;
background: #fff;
}
HTML:
<body class="app">
<div class="container">
<header></header>
</div>
</body>