<body>
<div id='top'>this is top</div>
some text...
</body>
css
html{
height:100%;
background:green;
}
body{
max-width:50%;
height:100%; //doesn't work
background:red;
margin:0 auto;
}
#top{
height:30px;
background:blue;
}
当标签some text...
中body
的长度足以出现滚动条时,body
停止为 100% 高度。
我需要彩色正文到页面底部,无论其中的文本数量如何。
小提琴在这里