+--------------------+
| |
| |
| |
| |
| 1 |
| |
| |
| |
| |
+--------------------+
| |
| |
| |
| |
| 2 |
| |
| |
| |
| |
+--------------------+
上图(1)的内容是未知的,因为它可能在动态生成的页面中增加或减少。如上图所示的第二个 div (2) 应填充剩余空间。
这是我的html的一个例子
<div id="full">
<!--contents of 1 -->
<div id="someid">
<!--contents of 2 -->
</div>
</div>
css...
#full{width: 300px; background-color: red;}
#someid{height: 100%;}
或者这种方法是错误的?我该怎么做?请查看我的演示并向我展示我的错误。