-4
I put border-Radius in my scrollbar, but there are leftovers when the background color is changed, and I would like to know how to remove :
I’d like to keep it that way:
Where you can’t see the ::Webkit-scrollbar-track
body{
height: 1280px;
}
div{
width:100%;
height: 500px;
background: red;
}
::-webkit-scrollbar{
width: 10px;
}
::-webkit-scrollbar-track{
border-radius: 8px;
background: #ffffff;
}
::-webkit-scrollbar-thumb{
background-color: green;
border-radius: 8px;
}
<div>Gostaria que a parte vermelha fosse todo o caminho da tela, atrás da barra verde</div>
Related: How to make a Custom Scrollbar?
– Icaro Martins
Related: Customization scroll bar
– Icaro Martins
Guy puts his code there, only with picture not to answer you
– hugocsl