+----------------------+
| 1 |
| |
+----------------------+
| | |
| 2 | |
| | |
| | 4 |
+-------| |
| 3 | |
| | |
+----------------------+
如上图(1)我需要添加一些标题内容,(2)左侧导航,(3)2内的一些内容到3的中心但不知道高度,因为4,(4)更大的内容。因此,我需要指定height: 100%;
但不起作用。怎么做?
编辑
<div id="wrap">
<!--contents of (1)-->
</div>
<div id="wrap">
<div id="left-nav">
<!--contents of (2)-->
<div id="someid">
<!-contents of (3)-->
</div>
</div>
<div id="main">
<!--contents of (4)-->
</div>
</div>
我想使用背景(2)和(3)相同的主css,(4)不同的背景。
#left-nav{width: 200px; background-color: red; height: 100%;}
检查此链接带有红色边框的红色文本是我想要给出的height: 100%;