28

在“固定”定位元素上使用 z-index CSS 属性会给我在 Chrome 下的奇怪行为。

当 Firefox 和 Opera 浏览器给我期待的结果时,Chrome 似乎不尊重 z-index 属性,在红色覆盖层上方显示滚动条(参见下面的代码和小提琴)。

HTML:

<div class="left">
    <div class="placeholder"></div>
</div>
<div class="right"></div>
<div class="overlay"></div>

CSS:

.left {
    background-color: yellow;
    bottom: 0;
    left: 0;
    overflow: auto;
    position: fixed;
    top: 0;
    width: 35%;
    z-index: 10;
}

.right {
    background-color: orange;
    bottom: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 65%;
    z-index: 20;
}

.overlay {
    background-color: red;
    bottom: 20%;
    left: 25%;
    position: fixed;
    right: 25%;
    top: 20%;
    z-index: 40;
}

.placeholder {
    height: 3000px;
}

示例:http: //jsfiddle.net/kvNFW/

操作系统:Apple Mac OS 10.8 Google Chrome:版本 27.0.1453.93

有没有人遇到过同样的问题,或者有办法解决这个问题?

提前感谢您的帮助。

编辑:

有关该问题的概述,请参阅此屏幕截图。

4

2 回答 2

51

您可以尝试添加-webkit-transform: translate3d(0, 0, 0). 它解决了我在移动 chrome 中发生的类似问题。

于 2014-04-01T04:16:41.687 回答
2

我有一些类似的问题,我发现解决的唯一方法是对 webkit 滚动条应用一些特殊样式,以便始终显示它。请参阅http://jsfiddle.net/sinspiral/pTkQL/并修复您的示例。

这与平台不兼容(因为在 Windows 上它也会应用这些样式),因此您可能需要找到一种方法,也许是 js,来检测它在哪个操作系统上运行。

.left::-webkit-scrollbar{
   -webkit-appearance: none;
}

.left::-webkit-scrollbar-thumb {
    background-color: rgba(50, 50, 50, .5);
    border: 3px solid transparent;
    border-radius: 9px;
    background-clip: content-box;
}

.left::-webkit-scrollbar-track {
    background-color: rgba(100, 100, 100, .5);
    width: 15px;
}
于 2013-12-07T12:37:19.473 回答