How to remove the black border of the pseudo element & :: - webkit-scrollbar-track?

-1

I am customizing my scrollbar but for more than I try I have not managed to remove the edge of scrollbar-track, I have a black border that I do not want this, I do not know if it is an edge or a shadow, I just want it to disappear I do this?

    
asked by Daniel Enrique Rodriguez Caste 23.09.2017 в 04:53
source

1 answer

1

If it is an edge you can modify it with the property border :

::-webkit-scrollbar-track {
    border: 0px none #FFFFFF;
}

If it's a shadow you can use box-shadow

::-webkit-scrollbar-track {
    box-shadow: none 0 0 0 #FFFFFF;
}
    
answered by 23.09.2017 в 07:24