我已经构建了这个小角度的ap,并希望容器元素能够拉伸页面的整个高度,当内容没有填满页面的高度时,例如在大屏幕上这个页面不会:
http://purepremier.com/#/teams/57
我尝试将其设置为
position: absolute;
top:0;
bottom:0;
height:100%
但是当内容溢出时,容器的高度仅延伸到视口高度。
有什么想法吗?或者是将角度添加到身体的角度是一种方式吗?
答案 0 :(得分:3)
是的,只是
* {
margin: 0;
padding: 0;
}
.container {
min-height: 100vh;
background: red;
}

<div class="container">
</div>
&#13;
或替代
* {
margin: 0;
padding: 0;
}
html {
height: 100%;
}
body {
height: 100%;
}
.container {
min-height: 100%;
background: red;
}
&#13;
<div class="container">
</div>
&#13;
答案 1 :(得分:0)
绝对定位不是设置完整文档高度的方法,但它设置为视口高度。您可以改为使用固定位置:
#element{
position: fixed;
top:0;
bottom:0;
}
答案 2 :(得分:0)
html, body {height:100%; min-height:100%; margin:0; padding:0;}
#full {background:red; height:100%;}
<div id='full'>hmm</div>