z-Index 问题——将孩子定位在父母的兄弟姐妹之上

发布于 2024-11-26 23:34:41 字数 223 浏览 1 评论 0原文

我遇到的情况如下此屏幕截图,但我想要的是 B 在 A 后面,并且 --棘手的部分 - b 超过 A。

在此处输入图像描述

我该怎么做?

非常感谢——埃里克。

I have a situation as in this screenshot below, but what I want is B behind A and -- the tricky part -- b over A.

enter image description here

How could I do that?

Thanks a lot -- Eric.

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

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

发布评论

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

评论(2

笑忘罢 2024-12-03 23:34:41

虽然屏幕截图很有帮助,但一些 HTML 会更好...但仅从屏幕截图来看,我建议将 b 的 z-index 提高到 2 或 3。这应该可以解决问题。

更新:我设法使其能够使用以下设置:A:z-index:2position:absolutefixed,B:z-index:1位置:静态,b:z-index:5位置:相对绝对已修复

While a screenshot is helpful, some HTML would be even better... Only from the screenshot though, I would suggest raising b's z-index to 2 or 3. That should fix the problem.

Update: I managed to make it work with the following settings: A: z-index:2, position:absolute or fixed, B: z-index:1, position:static, b: z-index:5, position:relative, absolute, or fixed.

我最亲爱的 2024-12-03 23:34:41

刚看了下源代码,简直是一塌糊涂。看起来页面上的CSS和JavaScript是由Yahoo自动生成并使用他们的API,而CSS实际上是通过在HTML中使用内联CSS直接由JavaScript实现的,如下所示:

<canvas id="fillAreaA" style="z-index: {javascript variable}" width="300" height="500" />

上面可能有文本,也是如此,但简而言之,如果您自己在自己的页面上实现它,那么您应该不会遇到任何问题。

编辑:几个月后我看到这个,简直不敢相信我是多么愚蠢。我现在知道JS来自YUI库。我同意安德鲁的解决方案。

Just took a look at the source code, and it's a complete mess. It looks like the CSS and JavaScript on the page has been auto-generated by Yahoo and uses their API, and the CSS is actually directly implemented by JavaScript by using inline CSS in the HTML, like so:

<canvas id="fillAreaA" style="z-index: {javascript variable}" width="300" height="500" />

There's probably text on top of it, too, but in short, you shouldn't have any problems with it if you implement it yourself on your own page.

EDIT: I'm looking at this several months later, and can't believe how dumb I was. I now know that the JS is from the YUI library. I defer to Andrew's solution.

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