Luca Pagliaroblog.sentiero.digital·Dec 19, 2023Enhancing Scroll Experience with CSS "scrollbar-gutter"Have you ever been bothered by those disruptive jolts when scrolling, especially while opening a modal? Fear not! Enter the CSS property scrollbar-gutter—a clever solution to mitigate these unwarranted movements triggered by the appearance or disappe...104 readsCSS
Segun Ajibolaajibolasegun.hashnode.dev·Dec 15, 2023Change Navbar Background Color on ScrollTiny changes make remarkable result in a web page. Changing the background color of a navbar when you scroll can add more beauty to the website and improve user experience. Follow along as we implement this simple effect as you scroll the webpage. Pr...12 likes·2.5K readsscrollY
saurabh suryavanshisaurabhsuryavanshi.hashnode.dev·Oct 12, 2023How to hide default scrollbar in CSS.hide-scrollbar::-webkit-scrollbar{ display: none; }CSS