gpt4 book ai didi

css - Firefox 中滚动条缩略图的 Z 索引

转载 作者:太空宇宙 更新时间:2023-11-03 19:00:50 25 4
gpt4 key购买 nike

我试图在 firefox 中设置滚动条的样式,以实现 OS X Lion 中滚动条的外观。这是我的时尚代码:

scrollbarbutton {-moz-appearance: none !important}

scrollbar, scrollcorner { -moz-appearance: none !important;
background-color: transparent !important;
}

scrollbar[orient='vertical'] { border-left: 0; -moz-transform:translateX(10px)}
scrollbar[orient='horizontal'] { border-top: 0; }

thumb { -moz-appearance: none !important;
border-color: red !important;
background: transparent;
opacity: .5;
border-style: solid;
}

thumb:hover, thumb:active {opacity: 1}

thumb[orient='vertical'] {
-moz-border-image: url(http://i.imgur.com/mxzFF.png) 15 0 15 0 fill;
border-width: 8px 0 8px 0;
-moz-transform:translateX(-10px);
z-index: 10000
}

但是,z-index 设置没有任何作用,页面内容覆盖了滚动条缩略图。

最佳答案

将您的最后一个 CSS block 更改为此:

thumb[orient='vertical'] { 
-moz-border-image: url(http://i.imgur.com/mxzFF.png) 15 0 15 0 fill;
border-width: 8px 0 8px 0;
-moz-transform:translateX(-10px);
position: relative;
z-index: 10000;
}

关于css - Firefox 中滚动条缩略图的 Z 索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12074162/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com