I'm trying to get rid of the horizontal and vertical scroll bars using css properties on a project i'm working, but is isn't working and i don't really know how to get rid of it. Anyhelp from here, really need it.
            Asked
            
        
        
            Active
            
        
            Viewed 82 times
        
    1 Answers
0
            You can use:
:root{
/*scrollbar-color: thumb-color track-color*/
scrollbar-color:#661ca3 #181818;
scrollbar-width:thin;
}
OR
html{
scrollbar-color:#661ca3 #181818;
scrollbar-width:thin;
}
OR This answer , also, might help you.
 
    
    
        m24197
        
- 1,038
- 1
- 4
- 12
