I'm looking for a guide to all the properties that exist to be able to edit the SCROLLBAR as well as observe the images
::-webkit-scrollbar {
width: 10px;
height: 115px;
}
::-webkit-scrollbar-button {
width: 0px;
height: 0px;
}
::-webkit-scrollbar-thumb {
background: yellow;
border: 0px none #ffffff;
border-radius: 50px;
}
::-webkit-scrollbar-thumb:hover {
background:rgba(0,0,15,0.7);
}
::-webkit-scrollbar-thumb:active {
background: rgba(0,0,15,1);
}
::-webkit-scrollbar-track {
background: #666666;
border: 0px none #ffffff;
border-radius: 50px;
}
::-webkit-scrollbar-track:hover {
background: #666666;
}
::-webkit-scrollbar-track:active {
background: #333333;
}
::-webkit-scrollbar-corner {
background: transparent;
}
body { SCROLLBAR-FACE-COLOR:red; SCROLLBAR-HIGHLIGHT-COLOR: brown; SCROLLBAR-SHADOW-COLOR: #6699CC; SCROLLBAR-3DLIGHT-COLOR: #FFFFFF; SCROLLBAR-ARROW-COLOR: #FFFFFF; SCROLLBAR-TRACK-COLOR: #E3E3E3; SCROLLBAR-DARKSHADOW-COLOR: #000000; }
<div class="grid-6">
<div class="col"> Un Col 1</div>
<div class="col"> Un Col 2</div>
</div>
<div class="grid-3_xs-3">
<div class="col-3_xs-10"> Un Col 3</div>
<div class="col-3_xs-4"> Un Col 4</div>
<div class="col-3_xs-7"> Un Col 5</div>
<div class="col-3_xs-8" data-push-left="off-2"> Un Col 6</div>
</div>
<div class="grid-6">
<div class="col"> Un Col 1</div>
<div class="col"> Un Col 2</div>
</div>
<div class="grid-3_xs-3">
<div class="col-3_xs-10"> Un Col 3</div>
<div class="col-3_xs-4"> Un Col 4</div>
<div class="col-3_xs-7"> Un Col 5</div>
<div class="col-3_xs-8" data-push-left="off-2"> Un Col 6</div>
</div>