基本上,我希望container
与id=content
内的内容一起垂直拉伸。我似乎无法弄清楚即使height:100%
的{{1}}价值无效也是如此。
容器的CSS
id=container
HTML MARKUP
#container {
width: 400px;
height:100%;
margin:auto;
background:#ccc;
}
答案 0 :(得分:0)
试试这个应该有效
#container {
width: 400px;
min-height:100px;
height:auto;
overflow:hidden;
margin:auto;
background:#ccc;
}
希望这会有所帮助:D