如何定位CSS固定JQuery下拉栏

发布于 2024-11-23 17:58:02 字数 493 浏览 1 评论 0原文

我正在寻找一个 JQuery 下拉栏(如 StackOverflow 中的下拉栏),当我找到 this 指向这个 jsfiddle 演示。这是完美的,除了一个问题:当页面滚动时,用户可能看不到消息。

我认为 CSS 中的一个简单的“固定”将会产生魔力(演示在这里),但随后新问题出现:条形不完整且居中。现在我被封锁了。我需要的是像第一个演示中那样的完整栏,但即使页面像第二个演示中那样滚动,也总是显示。谢谢。

I was looking for a JQuery dropdown bar (like the one in StackOverflow) when I'll find this that pointed to this jsfiddle demo. This is perfect except for one problem: when the page has scroll, it's possible that the user can't see the message.

I though that a simple "fixed" in the CSS will make the magic (demo here), but then a new problem appeared: the bar is not complete and centered. Now I'm blocked. What I need is the complete bar like in the first demo, but showed always even if page has scroll like in the second demo. Thanks.

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

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

发布评论

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

评论(2

囍孤女 2024-11-30 17:58:02

将以下内容添加到您的 CSS 声明中:

top: 0; 
left: 0;
width: 100%;

此处演示

Add the following to your CSS declaration:

top: 0; 
left: 0;
width: 100%;

Demo here

清风无影 2024-11-30 17:58:02

您还需要 3 个 css 样式:

width:100%;
top:0;
left:0;

You need 3 more css styles:

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