修复了居中内容中的导航 div

发布于 2024-10-18 04:14:17 字数 148 浏览 2 评论 0原文

我有一个居中的容器 div,左侧包含一个内容 div,右侧包含一个导航 div。我希望修复导航 div,就像不随内容滚动一样。见下图。这可行吗?

在此处输入图像描述

I have a centered container div, containing a content div to the left and a nav div to the right. I want the nav div to be fixed, as in not scrolling with content. See image below. Is this doable?

enter image description here

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

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

发布评论

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

评论(1

你的笑 2024-10-25 04:14:17

这确实是可能的,在您的 CSS 中使用它:

.navElement
{
   position: fixed;
   top: 10px; /*your distance from the top*/
   left: 10px; /*your distance from left*/
}

确保它是文档流中的第一个元素,位于 之后,并且它的行为应如您所描述的那样。

可以在此处查看示例

此处更新了固定位置父级的示例

更新了以父级为中心并固定导航的示例

This is indeed possible, use this in your CSS:

.navElement
{
   position: fixed;
   top: 10px; /*your distance from the top*/
   left: 10px; /*your distance from left*/
}

Make sure it is the first element in the document flow, right after <body> and it should behave as you described.

An example can be seen here.

Updated example for fixed position parent here.

Updated example for parent centered and nav fixed.

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