How to hide default scrollbar in CSS
.hide-scrollbar::-webkit-scrollbar{ display: none; }
Search for a command to run...
Articles tagged with #css
.hide-scrollbar::-webkit-scrollbar{ display: none; }
I began learning HTML and CSS in late 2021. When I first began it was very unclear as to the path to be taken to learn these technologies. It's easy to forget how poweful CSS is in this era where frameworks like Bootstrap and Tailwind exist. This lea...

What is Flexbox? Flexbox is a layout used to flexible and responsive structures. It is declared using display: flex. Following are some of the most commonly used Flexbox properties: flex-direction flex-direction is used to specify the directions i...

Selectors are an integral part of CSS. They help in targeting HTML elements when not using inline CSS. Pseudo-Selectors can be called pseudo-elements or pseudo-classes depending on the job they are performing. Pseudo-elements Pseudo-elements are gen...

The "position" property helps to set the position of an element. "top", "left", "right" and "bottom" properties are used to define the final position of an element. There are four types of positions in CSS, namely: static relative absolute fixed st...
