修复了居中内容中的导航 div
我有一个居中的容器 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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这确实是可能的,在您的 CSS 中使用它:
确保它是文档流中的第一个元素,位于
之后,并且它的行为应如您所描述的那样。
可以在此处查看示例。
此处更新了固定位置父级的示例。
更新了以父级为中心并固定导航的示例。
This is indeed possible, use this in your CSS:
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.