-1

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.

1 Answers1

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;
}

ORThis answer , also, might help you.

m24197
  • 1,038
  • 1
  • 4
  • 12