Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个居中的容器 div,其中包含左侧的内容 div 和右侧的导航 div。我希望导航 div 被修复,就像不滚动内容一样。见下图。这是可行的吗?
这确实是可能的,在你的 CSS 中使用它:
.navElement { position: fixed; top: 10px; /*your distance from the top*/ left: 10px; /*your distance from left*/ }
确保它是文档流中的第一个元素,紧随其后<body>,它的行为应该与您描述的一样。
<body>
可以在这里看到一个例子。
此处更新了固定位置父级的示例。
更新了父居中和导航固定的示例。