定位部门
我正在尝试放置 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看这是否有帮助(如果使用与 HTML 不同的 CSS):
CSS:
HTML:
建议您通过单独的文件或引用将 CSS 与 html 分开。 (您也可以将它们相互集成。)
See if this helps (if using a separate CSS from your HTML):
CSS:
HTML:
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.)