gpt4 book ai didi

css - 左侧为完整菜单,右侧为两个内容 Pane : DIV-and-CSS-only approach?

转载 作者:搜寻专家 更新时间:2023-10-31 22:48:53 24 4
gpt4 key购买 nike

我正在尝试创建一个类似于以下内容的简单网页:

enter image description here

我有三个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 创建这样的东西?

最佳答案

有几种方法可以做到这一点。

您只需添加以下内容即可修复您原来的方法:

html, body {
height: 100%;
overflow: hidden; /* to hide any scrollbars that might appear */
}

参见: http://jsfiddle.net/thirtydot/n4wr4/

关于css - 左侧为完整菜单,右侧为两个内容 Pane : DIV-and-CSS-only approach?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11000557/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com