webkit浏览器的自定义css滚动条问题

时间:2012-09-05 14:03:08

标签: html css css3 webkit

我已经创建了一个自定义滚动条,它似乎在firefox上工作正常,但是我的滚动出现在webkit浏览器的屏幕上有问题。 Click here

 #product-desc{
        top: 270px;
        left: 20px;
        right: 20px;
        bottom: 20px;
        height: 90px;
        max-width: 350px;
        overflow-x: hidden;
        overflow-y: scroll;
    }


    #product-desc :: -webkit-scrollbar{
        width: 12px;
    }

    #product-desc :: -webkit-scrollbar-track{
        border-radius: 10px;
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    }

    #product-desc :: -webkit-scrollbar-thumb{
        border-radius: 10px;
         -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
         color: #000;
        }

有谁知道我如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

这些是伪元素本身。滚动条的实际部分。

::-webkit-scrollbar              { /* 1 */ }
::-webkit-scrollbar-button       { /* 2 */ }
::-webkit-scrollbar-track        { /* 3 */ }
::-webkit-scrollbar-track-piece  { /* 4 */ }
::-webkit-scrollbar-thumb        { /* 5 */ }
::-webkit-scrollbar-corner       { /* 6 */ }
::-webkit-resizer                { /* 7 */ }

您可以查看 Custom Scrollbars in WebKit

您也可以浏览 Styling scrollbars the Webkit way - CSS3