2014-09-20 39 views
0

我創建一個網站沒有在網站的任何地方滾動條,並通過使用代碼,如何使用「顯示」屬性滾動條

::-webkit-scrollbar {display: none; }

而我需要顯示特定div的滾動條。但是,滾動條不可見。

HERE是我的代碼示例。我想要的是,滾動條在內框中可見而不在其他地方。

在此先感謝,夥計們!

回答

0

DEMO

*{margin:0 auto;padding:0px; } 
html, body{ height:100%; width:100%;} 

.big-box{ 
    height: 100%; 
    background: orange; 
} 

.box{ 
    width: 200px; 
    max-height: 200px; 
    overflow-y: scroll; 
    background: #ccc; 
} 
+0

@DOC ASAREL找到了我在尋找http://jsfiddle.net/v2Ypj/44/的解決方案。 感謝您的努力,himanshu。 – ARUN 2014-09-20 11:22:37