Web Developer Notes - Page 10
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 */
}
...
Cheat sheet for work with Git
Last updated: 26.10.2025
Views: 270
Git is an indispensable tool for managing versions of code in development. It allows you to track changes in the project, return to previous versions and work effectively in a team, preventing code conflicts. With its help, developers can conduct parallel work on different functions using branches, and then combine them. In addition, Git provides reliable storage of the history of changes, which h...