How can I add these two things on the scrollbar?
- padding around the scrollbar
- a cursor when you hover the scrollbar
This is my code:
#style-4::-webkit-scrollbar-track
{
background-color: #fff;
}
#style-4::-webkit-scrollbar
{
width: 5px;
background-color: #fff;
}
#style-4::-webkit-scrollbar-thumb
{
background-color: #ccc;
}
#style-4::-webkit-scrollbar-thumb:hover
{
background-color: #666;
cursor: pointer;
}
You can see it here. I want to add the padding like the ones on cssdeck.
Is it possible?
Try this one for Cursor
Yes You can add it.
I think this is correct, if im wrong please let know what you expect.
About that padding. Sample 5px padding from left
Adding
cursor: pointer
to every-webkit-scrollbar
element does not unfortunately work.