CSS 实现类似的固定浮动 div 始终位于其他 div 之上 - 就像 stackoverflow 一样?

发布于 2024-10-20 12:00:50 字数 253 浏览 4 评论 0原文

我想实现与此图中类似的效果:

在此处输入链接描述

基本上,我希望有一个 div 作为始终位于顶部的菜单栏 - 它下面的 div 是我的内容的容器 div。单击菜单栏中的任何链接只会更改容器 div 中的内容。

I'd like to achieve a similar effect as the one in this image:

enter link description here

Basically, I want to have a div as a menu bar that's always on top - the div beneath it being the container div for my content. Clicking any links in my menu bar only change the content in the container div.

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

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

发布评论

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

评论(2

停滞 2024-10-27 12:00:50

您需要使用 #top div 的 position:fixed; 属性。

<div id="top"></div>

#top {
  position:fixed;
  top:0px;
  width:100%;
  height:70px;
}

You need to use the position: fixed; property for #top div.

<div id="top"></div>

#top {
  position:fixed;
  top:0px;
  width:100%;
  height:70px;
}
懵少女 2024-10-27 12:00:50

您需要有一个 div 并分配 CSS 类:

.className {
width: 100%;
position: fixed;
top: 0px;
height: 75px;
}

然后在您的 div 上有:

Whatever

You need to have a div and assign the CSS classes:

.className {
width: 100%;
position: fixed;
top: 0px;
height: 75px;
}

Then on your div have: <div class="className">Whatever</div>

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