水平固定元素
使用 position:fixed
可以垂直和水平固定元素,但我希望我的元素仅保持水平固定。也就是说,我希望它与页面的其余部分一起垂直滚动。
有没有CSS方法可以做到这一点?如果不是,监视滚动偏移然后移动元素是否是正确的方法?
Using position:fixed
fixes an element both vertically and horizontally, but I want my element only to remain horizontally fixed. That is, I want it to scroll vertically with the rest of the page.
Is there any CSS way of doing this? If not, would monitoring scroll offsets and then moving the element be the right approach?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我最终做了这样的事情:
然后,
感谢所有回答的人。
I ended up doing something like this:
Then,
Thanks to all who answered.
你尝试过这些吗
did you try these
我认为这对于 CSS 来说是不可能的。事实上,我会使用
position:absolute
并使用 JavaScript 在页面滚动时更改top
css 值。I don't think this is possible entirely with CSS. I would, indeed, use
position:absolute
and use JavaScript to change thetop
css value when the page is scrolled.