水平固定元素

发布于 2024-11-16 02:23:50 字数 141 浏览 2 评论 0原文

使用 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 技术交流群。

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

发布评论

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

评论(3

以酷 2024-11-23 02:23:50

我最终做了这样的事情:

.fixThisHorizontally {
    position:absolute;
    z-index:100;
}

然后,

jQuery(window).scroll(function() {
    jQuery('.fixThisHorizontally').css('left', document.body.scrollLeft);
});

感谢所有回答的人。

I ended up doing something like this:

.fixThisHorizontally {
    position:absolute;
    z-index:100;
}

Then,

jQuery(window).scroll(function() {
    jQuery('.fixThisHorizontally').css('left', document.body.scrollLeft);
});

Thanks to all who answered.

蓦然回首 2024-11-23 02:23:50
 position:absolute;overflow-x: hidden; overflow-y: scroll;

你尝试过这些吗

 position:absolute;overflow-x: hidden; overflow-y: scroll;

did you try these

甜柠檬 2024-11-23 02:23:50

我认为这对于 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 the top css value when the page is scrolled.

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