Chrome下滚动条的奇怪z-index行为

时间:2013-06-01 15:58:55

标签: css google-chrome scrollbar z-index

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

当Firefox和Opera浏览器给我等待结果时,Chrome似乎不尊重z-index属性,在红色叠加层上方显示滚动条(参见代码和Fiddle bellow)。

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 谷歌浏览器:版本27.0.1453.93

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

提前感谢您的帮助。

修改

有关该问题的概述,请参阅此screenshot

2 个答案:

答案 0 :(得分:48)

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

答案 1 :(得分: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;
}