这个边界流过什么

发布于 2024-11-28 02:43:54 字数 179 浏览 1 评论 0原文

JsFiddle 链接

我有两个 div,两者的边框都重叠。当我将一个 z-index 设置得比另一个更高时,边框不应该被更高的 z-index div 挡住吗?

我可以做些什么来实现这个目标吗?

JsFiddle Link

I have two divs overlapping with borders on both. When I set the z-index on one higher then the other shouldn't the border also be blocked by the higher z-index div?

Is there anything I can do to accomplish this?

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

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

发布评论

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

评论(4

野鹿林 2024-12-05 02:43:55

您需要将背景颜色设置为:

#b { background-color: #fff }

更新的小提琴

You need to set the background color to something:

#b { background-color: #fff }

Updated fiddle

娇女薄笑 2024-12-05 02:43:55

它们目前是透明的。添加背景颜色。

#b {
    left: 15px;
    top: 15px;
    border: 1px solid blue;
    z-index: 2;
    background-color:#ffffff <---- here
}

They're currently transparent. Add a background colour.

#b {
    left: 15px;
    top: 15px;
    border: 1px solid blue;
    z-index: 2;
    background-color:#ffffff <---- here
}
羁〃客ぐ 2024-12-05 02:43:55

我在拖放排序环境中的表行上遇到了同样的问题。将背景设置为特定颜色(style =“background-color:White”),它将覆盖它。如果您不设置颜色,它会假定没有背景,只绘制其后面的内容(当它不重叠时,就什么都没有,所以当它实际上是空的时,它看起来像一个纯色背景)。

I had the same problem with table rows in a drag-and-drop sort environment. Set the background to a specific color (style="background-color:White") and it will cover it up. If you don't set a color, it assumes no background and just draws what is behind it (when it's not overlapping, that's nothing, so it looks like a solid background when really it's empty).

橘香 2024-12-05 02:43:54

设置明确的背景颜色

#b {
    left: 15px;
    top: 15px;
    border: 1px solid blue;
    z-index: 2;
    background-color: white;
}

Set an explicit background-color

#b {
    left: 15px;
    top: 15px;
    border: 1px solid blue;
    z-index: 2;
    background-color: white;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文