HTML & CSS - Page 2

css

How to Hide Scrollbar Using CSS

Last updated: 21.02.2026
Views: 270
There are several ways to hide the scrollbar using CSS, depending on whether you want to completely remove scrolling or just hide the visual appearance of the scrollbar. Hide the Scrollbar but Keep Scrolling To hide the scrollbar visually while still allowing scrolling: [css] /* For modern browsers */ .block { overflow: auto; /* or scroll */ scrollbar-width: none; /* Firefox */ } ...