DEV Community

Discussion on: πŸ‘‰ 5 CSS useful properties I TOTALLY ignored. πŸ€“

Collapse
 
faithfinder profile image
Info Comment hidden by post author - thread only visible in this permalink
Dmitrii Kartashev

I'm always extremely annoyed if a site messes with the scrollbar. For me dragging the scrollbar is one of the fastest ways to get around the page and if the bar is too thin or non-existent it's a big inconvenience.

Collapse
 
am_rahuls profile image
Rahul

I prefer page up/down, home and end buttons for navigating a site. Quick and convenient than scrollbar.

Collapse
 
helleworld_ profile image
DesirΓ© πŸ‘©β€πŸŽ“πŸ‘©β€πŸ«

Same!

I always use Up/Down buttons when reaching the ends specially if there is a lot of content.

Collapse
 
tobiastotz profile image
Tobias Totz

I agree that just not displaying the scrollbar isn't the best way from UX/UI view. But there are some other ways to change the scrollbar styling to match your site, for example:

::-webkit-scrollbar {
width: 15px;
}

::-webkit-scrollbar-track {
width: 15px;
background: rgba(0, 0, 0, 0.25);
border-radius: 20px;
}

::-webkit-scrollbar-thumb {
background: rgb(89, 31, 189);
border-radius: 20px;
min-height: 50px;
}

Some comments have been hidden by the post's author - find out more