Monday, October 14, 2013

Scroll Bar Display For iPad - overflow-auto - css - Fixed

To display Scroll Bar for your overflow-auto

Please use the following css code
<style>
::-webkit-scrollbar {
    -webkit-appearancenone;
    width7px;
}
::-webkit-scrollbar-thumb {
    border-radius4px;
    background-colorrgba(0,0,0,.5);
    -webkit-box-shadow1px rgba(255,255,255,.5);
}
</style>