I am looking to customize the scrollbar within a div. I attempted to modify it using the code below, but I encountered difficulties when trying to change the scroll buttons and did not achieve my desired outcome. Additionally, this customization did not work in the Mozilla Firefox browser.
What I am aiming for:
::-webkit-scrollbar {
width: 3px;
}
::-webkit-scrollbar-track {
background: #888;
}
::-webkit-scrollbar-thumb {
background: #888;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}
<p>.</p>
<p>.</p>
<p>.</p>
<!-- more code follows -->