如何使该下拉列表显示在其下方文本上方

发布于 2025-01-08 03:42:33 字数 262 浏览 0 评论 0原文

我有一个 div,其下方有另一个 div 下拉菜单,但该下拉菜单显示在其下方内容的下方,而我希望它显示在其上方。

我尝试通过为内容设置比下拉列表更低的 z-index 来使用 z-index,但它不起作用。

我怎样才能让这些div以正确的顺序出现? - 我在 jsfiddle 上制作了它的模型。

I've got a div which has another div drop down below it, but the drop-down appears below the content that's below it, and I want it to appear above it.

I've tried using z-index by setting a lower z-index for the content than the drop-down, but it's not working.

How can I make these divs appear in the correct order? - I've made a mockup of it on a jsfiddle.

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

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

发布评论

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

评论(2

勿忘初心 2025-01-15 03:42:33

我更新了你的jsfiddle: http://jsfiddle.net/mvRYR/1/

你需要设置 <使用 z-index 时,code>position:relative; 或 position:absolute;

I updated your jsfiddle: http://jsfiddle.net/mvRYR/1/

You need to set position: relative; or position: absolute; when using z-index.

懒猫 2025-01-15 03:42:33

只需添加

z-index: 10; position: relative;

到您的 #drop 样式中

,如果您还添加 background-color: Yellow; ,您就可以看到它更好...

just add

z-index: 10; position: relative;

to your #drop style

if you add background-color: yellow; as well, you could see it better...

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