我正在尝试创建一个类似于以下内容的简单网页:
我有三个DIV,如下:
<div class="leftNav">
</div>
<div class="topPanel">
</div>
<div class="bottomPanel">
</div>
这是CSS:
.leftNav
{
width: 20%;
height: 100%;
float: left;
}
.topPanel
{
width: 80%;
height: 50%;
float: right;
}
.bottomPanel
{
width: 80%;
height: 50%;
float: right;
}
然而,最终结果看起来完全不正常。是否可以使用 DIV 和 CSS 创建这样的东西?