定位部门

发布于 2024-10-18 17:44:41 字数 269 浏览 0 评论 0原文

我正在尝试放置 2 个 Div。

我想要一个条带 100% 分布在页面底部,高度为 100px,并且让 div 占据其上方的所有空间。我希望顶部的 div 能够滚动,而底部的 div 没有滚动功能。有谁知道如何编写这个代码?我正在使用下面的代码:

菜单栏

{ 宽度:100%; 高度:100px; 位置:绝对; }

内容

{ 宽度:100%; 高度:530px; 位置:绝对; }

I am trying to position 2 Divs.

I want to have a strip spread 100% across the bottom of the page with a height of 100px and for the div to take up all of the space above it. I would like the top div to scroll and for the bottom one to have no scroll capability. Does anyone know how to code this? I am using the below code:

menubar

{
width:100%;
height:100px;
position: absolute;
}

content

{
width:100%;
height:530px;
position: absolute;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

护你周全 2024-10-25 17:44:41

看看这是否有帮助(如果使用与 HTML 不同的 CSS):

CSS:

#wrapper {float: left; width: auto; heigth: auto; position: absolute; bottom: 0px;}

#top {width: 100%; Height: 100%; Position: relative; Overflow: auto;}

#bottom {width: 100%; height: 100px; position: relative; Overflow: hidden;}

HTML:

<div id="wrapper"> <div id="top"> DIV CONTENT GOES HERE </div> <div id="bottom"> DIV CONTENT GOES HERE </div> </div>

建议您通过单独的文件或引用将 CSS 与 html 分开。 (您也可以将它们相互集成。)

See if this helps (if using a separate CSS from your HTML):

CSS:

#wrapper {float: left; width: auto; heigth: auto; position: absolute; bottom: 0px;}

#top {width: 100%; Height: 100%; Position: relative; Overflow: auto;}

#bottom {width: 100%; height: 100px; position: relative; Overflow: hidden;}

HTML:

<div id="wrapper"> <div id="top"> DIV CONTENT GOES HERE </div> <div id="bottom"> DIV CONTENT GOES HERE </div> </div>

It is recommended that you separate your CSS from the html by separate files or references. (You could also just integrate them within each other.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文